-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove npm deps from dependabot + auto-approve (#2578)
We have a custom workflow which updates deps. Additionally, add a GitHub workflow to auto-approve PRs with the `pr/auto-approve` label.
- Loading branch information
Elad Ben-Israel
authored
Feb 16, 2021
1 parent
769bc1e
commit 2e6f385
Showing
3 changed files
with
19 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Approve PRs with "pr/auto-approve". mergify takes care of the actual merge. | ||
|
||
name: auto-approve | ||
on: pull_request | ||
|
||
jobs: | ||
auto-approve: | ||
if: contains(github.event.pull_request.labels.*.name, 'pr/auto-approve') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: hmarr/auto-approve-action@v2.0.0 | ||
with: | ||
github-token: "${{ secrets.AUTO_APPROVE_GITHUB_TOKEN }}" |
This file was deleted.
Oops, something went wrong.