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 581d1ce commit 4e6625cCopy full SHA for 4e6625c
2 files changed
.github/workflows/build.yaml
@@ -59,14 +59,14 @@ jobs:
59
60
- name: Get Release Bot Token
61
id: get-token
62
- if: ${{ inputs.release }}
+ if: ${{ inputs.release && github.actor != 'dependabot[bot]' }}
63
uses: getsentry/action-github-app-token@v1
64
with:
65
app_id: ${{ secrets.DS_RELEASE_BOT_ID }}
66
private_key: ${{ secrets.DS_RELEASE_BOT_PRIVATE_KEY }}
67
68
- name: Maybe Release 🚀
69
- if: "${{ inputs.release }}"
70
run: |
71
npm run semantic-release
72
env:
.github/workflows/conventional-pr.yaml
@@ -11,6 +11,7 @@ on:
11
jobs:
12
lint-pr:
13
runs-on: ubuntu-latest
14
+ if: github.actor != 'dependabot[bot]'
15
steps:
16
- uses: actions/checkout@v4
17
0 commit comments