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 9b275bb commit fc8e4ffCopy full SHA for fc8e4ff
.github/workflows/validate-pr-metadata.yml
@@ -0,0 +1,18 @@
1
+name: Validate PR Metadata
2
+on:
3
+ pull_request_target:
4
+ types:
5
+ - labeled
6
+ - unlabeled
7
+ - opened
8
+ - edited
9
+ - reopened
10
+
11
+jobs:
12
+ validate_pr_metadata:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: CodeYourFuture/actions/validate-pr-metadata@main
17
+ with:
18
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments