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