chore(deps): bump sass from 1.80.7 to 1.81.0 in /frontend #9609
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
name: Dependabot Approve and Merge | |
on: | |
pull_request_target: | |
types: [opened, synchronize, reopened] | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
auto-approve-and-merge: | |
runs-on: ubuntu-latest | |
if: github.actor == 'dependabot[bot]' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Dependabot metadata | |
id: metadata | |
uses: dependabot/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Approve PR | |
if: steps.metadata.outputs.update-type != 'version-update:semver-major' | |
run: | | |
gh pr review --approve "${{ github.event.pull_request.html_url }}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Enable auto-merge for minor and patch PRs | |
if: steps.metadata.outputs.update-type != 'version-update:semver-major' | |
run: | | |
gh pr merge --auto --rebase "${{ github.event.pull_request.html_url }}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |