-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: only replicate update-changelog to release notification repos (#332
- Loading branch information
1 parent
1e3278b
commit 16d21e9
Showing
1 changed file
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,7 +73,6 @@ jobs: | |
.github/workflows/codeql.yml, | ||
.github/workflows/issues.yml, | ||
.github/workflows/issues-stale.yml, | ||
.github/workflows/update-changelog.yml, | ||
.github/workflows/yaml-lint.yml | ||
commit_message: 'chore: update global workflows' | ||
repos_to_ignore: '' | ||
|
@@ -168,19 +167,41 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Replicating files (release notifier) | ||
- name: Replicating files (release/changelog workflows) | ||
uses: derberg/[email protected] | ||
with: | ||
github_token: ${{ secrets.GH_BOT_TOKEN }} | ||
committer_username: ${{ secrets.GH_BOT_NAME }} | ||
committer_email: ${{ secrets.GH_BOT_EMAIL }} | ||
patterns_to_ignore: '' | ||
patterns_to_include: >- | ||
.github/workflows/release-notifier.yml | ||
.github/workflows/release-notifier.yml, | ||
.github/workflows/update-changelog.yml | ||
commit_message: 'chore: update global workflows' | ||
repos_to_ignore: '' | ||
topics_to_include: 'replicator-release-notifications' | ||
exclude_private: false | ||
exclude_forked: true | ||
destination: '' | ||
bot_branch_name: bot/update-files-from-global-repo | ||
|
||
# todo: the following can be removed after it has run once | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Removing files (changelog workflows) | ||
uses: derberg/[email protected] | ||
with: | ||
github_token: ${{ secrets.GH_BOT_TOKEN }} | ||
committer_username: ${{ secrets.GH_BOT_NAME }} | ||
committer_email: ${{ secrets.GH_BOT_EMAIL }} | ||
patterns_to_ignore: '' | ||
patterns_to_remove: >- | ||
.github/workflows/update-changelog.yml | ||
commit_message: 'chore: update global workflows' | ||
repos_to_ignore: '' | ||
topics_to_include: 'github-action' | ||
exclude_private: false | ||
exclude_forked: true | ||
destination: '' | ||
bot_branch_name: bot/update-files-from-global-repo |