Skip to content

Commit

Permalink
ci: replace action 2 debug 2
Browse files Browse the repository at this point in the history
Signed-off-by: Mateusz Urbanek <[email protected]>
  • Loading branch information
shanduur committed Oct 10, 2024
1 parent d0e40bb commit b790858
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/autopilot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
message: |
| Name | Value |
|---|---|
| Required Label | ${{ contains(github.event.issue.labels.*.name, 'area/dependency') }} |
| Forbidden Label | ${{ !contains(github.event.issue.labels.*.name, 'do-not-merge') }} |
| Labels | ${{ github.event.issue.labels }} |
| Required Label | ${{ contains(github.event.pull_request.labels.*.name, 'area/dependency') }} |
| Forbidden Label | ${{ !contains(github.event.pull_request.labels.*.name, 'do-not-merge') }} |
| Labels | ${{ github.event.pull_request.labels }} |
| Is correct user | ${{ github.actor == 'renovate[bot]' }} |
| User | ${{ github.actor }} |
- if: |
contains(github.event.issue.labels.*.name, 'area/dependency') &&
!contains(github.event.issue.labels.*.name, 'do-not-merge') &&
contains(github.event.pull_request.labels.*.name, 'area/dependency') &&
!contains(github.event.pull_request.labels.*.name, 'do-not-merge') &&
github.actor == 'renovate[bot]'
uses: hmarr/auto-approve-action@v4

0 comments on commit b790858

Please sign in to comment.