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.
2 parents 0c810a6 + 777ce44 commit 269b788Copy full SHA for 269b788
.github/workflows/main.yml
@@ -1,7 +1,9 @@
1
name: Main
2
on:
3
-- push
4
-- pull_request_target
+ push:
+ branches:
5
+ - main
6
+ pull_request: {}
7
jobs:
8
ci:
9
strategy:
@@ -17,7 +19,7 @@ jobs:
17
19
env:
18
20
CI: true
21
steps:
- - uses: actions/checkout@master
22
+ - uses: actions/checkout@v3
23
- uses: ruby/setup-ruby@v1
24
with:
25
bundler-cache: true
@@ -30,7 +32,7 @@ jobs:
30
32
name: AutoMerge
31
33
needs: ci
34
runs-on: ubuntu-latest
- if: github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]'
35
+ if: github.event_name == 'pull_request' && github.actor == 'dependabot[bot]'
36
37
- uses: actions/github-script@v3
38
0 commit comments