Bump Swatinem/rust-cache from 2.7.1 to 2.7.3 #2
Workflow file for this run
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
# https://github.com/ahmadnassri/action-dependabot-auto-merge | |
name: Dependabot Auto Merge | |
on: | |
# https://securitylab.github.com/research/github-actions-preventing-pwn-requests | |
# could and should work, at least for public repos; | |
# tracking issue for this action's issue: | |
# https://github.com/ahmadnassri/action-dependabot-auto-merge/issues/60 | |
pull_request_target: | |
# allows to re-run just by relabeling the issue | |
types: [ labeled ] | |
jobs: | |
auto-merge: | |
runs-on: ubuntu-latest | |
# if: github.actor == 'dependabot[bot]' | |
# allows to re-run just by relabeling the issue | |
if: contains(github.event.pull_request.labels.*.name, 'dependencies') | |
steps: | |
- uses: actions/[email protected] | |
- uses: ahmadnassri/action-dependabot-auto-merge@v2 | |
with: | |
target: patch | |
# Note: This needs to be a PAT with (public) repo rights, | |
# PAT-owning user needs to have write access to this repo | |
# (dependabot needs to recognize the comment as coming from an allowed reviewer) | |
github-token: ${{ secrets.BOT_TOKEN }} |