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 71f1d70 commit e8968ccCopy full SHA for e8968cc
.github/workflows/metadata.yml
@@ -3,10 +3,13 @@ name: Fetch Addon Metadata
3
on:
4
pull_request_review:
5
types: [submitted]
6
+ workflow_dispatch:
7
8
jobs:
9
metadata:
- if: ${{ github.event.review.state == 'approved' }}
10
+ if: |
11
+ github.event_name == 'workflow_dispatch' ||
12
+ (github.event_name == 'pull_request_review' && github.event.review.state == 'approved')
13
runs-on: ubuntu-latest
14
permissions:
15
contents: write
.github/workflows/pull_request.yml
@@ -4,7 +4,6 @@ on:
pull_request:
branches:
- main
- workflow_dispatch:
style:
0 commit comments