mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Dependabot changelogs: trigger CI explicitly (#14027)
* Dependabot changelogs: trigger CI explicitly * Changelog * Use merge ref, not head ref ref ref ref ref ref * explanatory note
This commit is contained in:
parent
4cceb6ba66
commit
2d5ce8c087
23
.github/workflows/dependabot_changelog.yml
vendored
23
.github/workflows/dependabot_changelog.yml
vendored
@ -3,16 +3,13 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
- reopened
|
- reopened # For debugging!
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
# Needed to be able to push the commit. See
|
# Needed to be able to push the commit. See
|
||||||
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#enable-auto-merge-on-a-pull-request
|
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#enable-auto-merge-on-a-pull-request
|
||||||
# for a similar example
|
# for a similar example
|
||||||
contents: write
|
contents: write
|
||||||
# The pull_requests "synchronize" event doesn't seem to fire with just `contents: write`, so
|
|
||||||
# CI doesn't run with the new changelog. Maybe `pull_requests: write` will fix this?
|
|
||||||
pull-requests: write
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
add-changelog:
|
add-changelog:
|
||||||
@ -31,5 +28,23 @@ jobs:
|
|||||||
git commit -m "Changelog"
|
git commit -m "Changelog"
|
||||||
git push
|
git push
|
||||||
shell: bash
|
shell: bash
|
||||||
|
# We have to explicitly start CI.
|
||||||
|
#
|
||||||
|
# By default, workflows can't trigger other workflows when they're just using the
|
||||||
|
# default `GITHUB_TOKEN` access token. (This is intended to stop you from writing
|
||||||
|
# recursive workflow loops by accident, because that'll get very expensive very
|
||||||
|
# quickly.) Instead, you have to manually call out to another workflow, or else
|
||||||
|
# make your changes (i.e. the `git push` above) using a personal access token.
|
||||||
|
# See
|
||||||
|
# https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow
|
||||||
|
- name: Trigger CI
|
||||||
|
# Note: we use $GITHUB_REF here to run PR against the merge of this change with
|
||||||
|
# develop; use github.event.pull_request.head.ref above to commit to the PR
|
||||||
|
# branch.
|
||||||
|
run: |
|
||||||
|
gh workflow run "tests.yml" --ref "$GITHUB_REF"
|
||||||
|
gh workflow run "release-artifacts.yml" --ref "$GITHUB_REF"
|
||||||
|
shell: bash
|
||||||
|
|
||||||
# THIS WORKFLOW HAS VARIOUS WRITE PERMISSIONS---do not add other jobs here unless they
|
# THIS WORKFLOW HAS VARIOUS WRITE PERMISSIONS---do not add other jobs here unless they
|
||||||
# are sufficiently locked down to dependabot only as above.
|
# are sufficiently locked down to dependabot only as above.
|
||||||
|
1
.github/workflows/release-artifacts.yml
vendored
1
.github/workflows/release-artifacts.yml
vendored
@ -11,6 +11,7 @@ on:
|
|||||||
|
|
||||||
# we do the full build on tags.
|
# we do the full build on tags.
|
||||||
tags: ["v*"]
|
tags: ["v*"]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
1
.github/workflows/tests.yml
vendored
1
.github/workflows/tests.yml
vendored
@ -4,6 +4,7 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches: ["develop", "release-*"]
|
branches: ["develop", "release-*"]
|
||||||
pull_request:
|
pull_request:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
1
changelog.d/14027.misc
Normal file
1
changelog.d/14027.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Prototype a workflow to automatically add changelogs to dependabot PRs.
|
Loading…
Reference in New Issue
Block a user