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 af5b743 commit 3ba42ecCopy full SHA for 3ba42ec
.github/workflows/ci.yml
@@ -1,15 +1,23 @@
1
name: AstroNvim
2
on:
3
push:
4
- branches: ["main"]
+ branches: [main]
5
pull_request:
6
+ pull_request_target:
7
+ types: [opened, edited, synchronize]
8
9
jobs:
10
CI:
11
uses: AstroNvim/.github/.github/workflows/plugin_ci.yml@main
12
+ if: ${{ github.event_name != 'pull_request_target' }}
13
secrets: inherit
14
with:
15
plugin_name: ${{ github.event.repository.name }}
16
is_production: ${{ github.event_name == 'push' }}
17
commit_msg: false
- pr_title: true
18
+ PR:
19
+ uses: AstroNvim/.github/.github/workflows/validate_pr.yml@main
20
+ if: ${{ github.event_name == 'pull_request_target' }}
21
+ secrets: inherit
22
+ with:
23
+ conventional_title: true
0 commit comments