Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .github/workflows/unified-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Unified Tests
on:
push:
branches: [master]
pull_request: ~
pull_request_target: ~

jobs:
schema-check:
Expand Down Expand Up @@ -37,8 +37,17 @@ jobs:

runs-on: ubuntu-latest

permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.head_ref }}

- name: Set up Python
uses: actions/setup-python@v1
with:
Expand All @@ -61,6 +70,6 @@ jobs:
cd source && make -B

- name: "Commit the changes"
uses: stefanzweifel/git-auto-commit-action@v5
uses: stefanzweifel/git-auto-commit-action@v6
with:
commit_message: "Update generated files"
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ tests:
object: testRunner
arguments:
client: *client0
connections: 0
connections: 1
Loading