Skip to content

version bump 61960573981 #866

version bump 61960573981

version bump 61960573981 #866

Workflow file for this run

name: Tag if there are only ts changes
on:
pull_request:
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- id: ts-files-changed
uses: tj-actions/changed-files@v19
with:
files: ts
- if: ${{ steps.ts-files-changed.outputs.only_modified == 'true' }}
run: gh pr edit ${{ github.event.number }} --add-label ts-only
env:
GITHUB_TOKEN: ${{ secrets.WORKFLOW_PAT }}
- if: ${{ steps.ts-files-changed.outputs.only_modified == 'false' }}
run: gh pr edit ${{ github.event.number }} --remove-label ts-only
env:
GITHUB_TOKEN: ${{ secrets.WORKFLOW_PAT }}