Skip to content

Commit f540e11

Browse files
committed
πŸ”„ synced local '.github/workflows' with remote '.dispatcher'
1 parent 8fc6370 commit f540e11

File tree

3 files changed

+25
-82
lines changed

3 files changed

+25
-82
lines changed

β€Ž.github/workflows/auto-merge.ymlβ€Ž

Lines changed: 0 additions & 56 deletions
This file was deleted.

β€Ž.github/workflows/create-labels.ymlβ€Ž

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
Β (0)