Skip to content

chore: migrate workflow helper scripts for #320 phase B #285

chore: migrate workflow helper scripts for #320 phase B

chore: migrate workflow helper scripts for #320 phase B #285

Workflow file for this run

name: Pull Request Labeling
on:
- pull_request
jobs:
labeler:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- id: label-the-PR
uses: actions/labeler@v6
with:
configuration-path: '.github/labeler.yaml'
- id: run-tests
if: contains(steps.label-the-PR.outputs.all-labels, 'changes/source')
run: |
echo "Running tests..."
# Put your commands for running backend tests here
size-label:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: size-label
uses: "pascalgn/size-label-action@v0.5.7"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
IGNORED: ".*\n!.gitignore\n!.github\n!LICENSE\n!README.md\n!Makefile\n!basic-setup.gitconfig\n!.gitmodules\n!.editorconfig"