-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from prithvikumardetne/bot/update-global-workfl…
…ow-main-6fa6ca83518721fd4579bdb1c81a812df6affa86 ci: update global workflows
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Global workflow to rule them all | ||
|
||
on: | ||
push: | ||
branches: [ main ] #or main | ||
|
||
jobs: | ||
|
||
replicate_changes: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Replicating global workflow | ||
uses: derberg/manage-files-in-multiple-repositories@v2 | ||
with: | ||
github_token: ${{ secrets.MANAGE_FILES_TOKEN }} | ||
patterns_to_ignore: '.github/workflows/manage-files.yml' | ||
patterns_to_include: '.github/workflows' | ||
exclude_private: true | ||
exclude_forked: true | ||
branches: main | ||
committer_username: [email protected] | ||
committer_email: [email protected] | ||
commit_message: "ci: update global workflows" |