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 ea4fb7a commit 0f712e9Copy full SHA for 0f712e9
.github/workflows/bump.yml
@@ -1,15 +1,22 @@
1
---
2
name: bump
3
4
-on: [repository_dispatch]
+on:
5
+ workflow_dispatch:
6
+ inputs:
7
+ package_name:
8
+ description: 'Package to bump'
9
+ required: true
10
+ package_version:
11
+ description: 'Package version'
12
13
14
jobs:
15
bump:
- if: github.event_name == 'repository_dispatch' && github.event.action == 'tag'
16
runs-on: ubuntu-latest
17
env:
- PACKAGE_NAME: ${{ github.event.client_payload.package_name }}
- PACKAGE_VERSION: ${{ github.event.client_payload.package_version }}
18
+ PACKAGE_NAME: ${{ github.event.inputs.package_name }}
19
+ PACKAGE_VERSION: ${{ github.event.inputs.package_version }}
20
21
steps:
22
- name: Information
0 commit comments