Skip to content

Commit

Permalink
test dependabot workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
carloscastrojumo committed Mar 26, 2024
1 parent 69a2956 commit 35f16e4
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/autolabel.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
name: Add Labels

on:
pull_request:
types: opened
pull_request: {}

jobs:
add_labels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-ecosystem/action-add-labels@v1
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
with:
labels: maintenance
- uses: actions/checkout@v4

- if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
env:
GH_TOKEN: ${{ github.token }}
run:
gh pr edit ${{ github.event.pull_request.number }} --add-label maintenance

0 comments on commit 35f16e4

Please sign in to comment.