mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Try to run reuse workflow without explicitly allowing it for new contributors. (#5296)
This commit is contained in:
parent
7777b48c99
commit
44e85c3a60
1 changed files with 5 additions and 2 deletions
7
.github/workflows/reuse.yml
vendored
7
.github/workflows/reuse.yml
vendored
|
@ -8,7 +8,8 @@ name: Verify REUSE
|
|||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
pull_request_target:
|
||||
types: [opened, synchronize, reopened]
|
||||
branches: [main]
|
||||
# Run CI once per day (at 07:30 UTC)
|
||||
schedule:
|
||||
|
@ -21,7 +22,9 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha || '' }}
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue