We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2b7875 commit 431d1d4Copy full SHA for 431d1d4
.github/workflows/export-labels.yml
@@ -0,0 +1,21 @@
1
+name: Export label config
2
+on:
3
+ # You can run this with every event, but it's better to run it only when you actually need it.
4
+ workflow_dispatch:
5
+
6
+jobs:
7
+ labels:
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: EndBug/export-label-config@v1
12
+ with:
13
+ # This is needed if you're dealing with private repos.
14
+ token: ${{ secrets.GITHUB_TOKEN }}
15
16
+ # Set this to `true` if you want to get the raw API reponse. Defaults to `false`.
17
+ raw-result: false
18
19
+ # By default every label entry will have an `aliases` property set to an empty array.
20
+ # It's for EndBug/label-sync, if you don't want it you cans set this to `false`
21
+ add-aliases: false
0 commit comments