Skip to content

Bump sass from 1.79.3 to 1.79.4 in /packages/hydefront #866

Bump sass from 1.79.3 to 1.79.4 in /packages/hydefront

Bump sass from 1.79.3 to 1.79.4 in /packages/hydefront #866

name: 🏷 Label Pull Requests
on:
pull_request:
types: [opened, reopened, closed]
jobs:
label-pull-requests:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
# If PR title starts with "Internal: " then add the "Internal" label
- name: Label Internal Pull Requests
if: "startsWith(github.event.pull_request.title, 'Internal: ')"
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const script = require('./.github/scripts/LabelInternal.js');
console.log(script({github, context}));
# Remove "run-visual-tests" labels and similar when the pull request is closed
- name: Remove state control labels
if: github.event_name == 'pull_request' && github.event.action == 'closed'
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const script = require('./.github/scripts/RemoveStateLabels.js');
await script({github, context});