ci: ensure ci prs trigger workflows (#1279)

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
Paul Meyer 2023-02-27 09:16:07 -05:00 committed by GitHub
parent 05823680f3
commit 4f480db77a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 1 deletions

View File

@ -68,4 +68,5 @@ jobs:
This PR updates (the hashes of) apk packages. It is generated by the package-hasher workflow. This PR updates (the hashes of) apk packages. It is generated by the package-hasher workflow.
committer: edgelessci <edgelessci@users.noreply.github.com> committer: edgelessci <edgelessci@users.noreply.github.com>
labels: dependencies labels: dependencies
token: ${{ secrets.CI_GITHUB_REPOSITORY }} # We need to push changes using a token, otherwise triggers like on:push and on:pull_request won't work.
token: ${{ !github.event.pull_request.head.repo.fork && secrets.TIDY_RENOVATE_PUSH || '' }}

View File

@ -92,6 +92,8 @@ jobs:
commit-message: "docs: add release ${{ env.VERSION }}" commit-message: "docs: add release ${{ env.VERSION }}"
committer: edgelessci <edgelessci@users.noreply.github.com> committer: edgelessci <edgelessci@users.noreply.github.com>
labels: no changelog labels: no changelog
# We need to push changes using a token, otherwise triggers like on:push and on:pull_request won't work.
token: ${{ !github.event.pull_request.head.repo.fork && secrets.TIDY_RENOVATE_PUSH || '' }}
prepare-release-branch: prepare-release-branch:
name: Prepare release branch name: Prepare release branch
@ -413,3 +415,5 @@ jobs:
commit-message: "release: bring back changes from ${{ env.VERSION }}" commit-message: "release: bring back changes from ${{ env.VERSION }}"
committer: edgelessci <edgelessci@users.noreply.github.com> committer: edgelessci <edgelessci@users.noreply.github.com>
labels: no changelog labels: no changelog
# We need to push changes using a token, otherwise triggers like on:push and on:pull_request won't work.
token: ${{ !github.event.pull_request.head.repo.fork && secrets.TIDY_RENOVATE_PUSH || '' }}

View File

@ -51,3 +51,5 @@ jobs:
commit-message: "docs: update cli reference" commit-message: "docs: update cli reference"
committer: edgelessci <edgelessci@users.noreply.github.com> committer: edgelessci <edgelessci@users.noreply.github.com>
labels: no changelog labels: no changelog
# We need to push changes using a token, otherwise triggers like on:push and on:pull_request won't work.
token: ${{ !github.event.pull_request.head.repo.fork && secrets.TIDY_RENOVATE_PUSH || '' }}