-
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.
- Loading branch information
1 parent
4c33171
commit ffb3b95
Showing
1 changed file
with
30 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,30 @@ | ||
name: Sync labels | ||
on: | ||
# Allows you to call this workflow from other workflows | ||
workflow_call: | ||
secrets: | ||
NPM_TOKEN: | ||
required: false | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# Schedule this to run every 24 hours | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
labels: | ||
runs-on: [self-hosted, linux] | ||
|
||
permissions: | ||
issues: write | ||
|
||
steps: | ||
- uses: EndBug/label-sync@v2 | ||
with: | ||
config-file: https://raw.githubusercontent.com/eviden-parallel/.github/main/.github/labels.yml | ||
delete-other-labels: true |