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 ef0bc57 commit d8c5d15Copy full SHA for d8c5d15
β.github/workflows/auto-merge.ymlβ
β.github/workflows/create-labels.ymlβ
β.github/workflows/quickpick-dispatcher.ymlβ
@@ -0,0 +1,24 @@
1
+name: Quickpick Dispatcher
2
+
3
+on:
4
+ pull_request:
5
+ types:
6
+ - closed
7
+ branches:
8
+ - 'main'
9
10
+jobs:
11
+ if_merged:
12
+ if: github.event.pull_request.merged == true
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
18
+ - name: Invoke workflow in another repo with inputs
19
+ uses: benc-uk/workflow-dispatch@v1
20
+ with:
21
+ workflow: combine_releases.yml
22
+ repo: Bearsampp/Bearsampp
23
+ # Required when using the `repo` option. Either a PAT or a token generated from the GitHub app or CLI
24
+ token: "${{ secrets.GH_PAT }}"
0 commit comments