fix(HiddenText): updated status to deprecated #6285
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
name: Dependabot Auto Merge | |
on: | |
pull_request_target: | |
types: [labeled] | |
jobs: | |
enable-auto-merge: | |
runs-on: ubuntu-latest | |
# Specifically check that dependabot (or another trusted party) created this pull-request, and that it has been labelled correctly. | |
if: github.event.pull_request.user.login == 'dependabot[bot]' && contains(github.event.pull_request.labels.*.name, 'dependencies') | |
steps: | |
- uses: alexwilson/[email protected] | |
with: | |
github-token: '${{ secrets.GITHUB_TOKEN }}' |