Skip to content

Bump actions/checkout from 3 to 6 #197

Bump actions/checkout from 3 to 6

Bump actions/checkout from 3 to 6 #197

Workflow file for this run

name: YC Tracker
on:
pull_request:
types:
- opened
- reopened
- synchronize
- closed
jobs:
transition-task:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Move Task When PR Opened
if: github.event.action != 'closed'
uses: ./
with:
token: ${{ secrets.GITHUB_TOKEN }}
yandex_org_id: ${{ secrets.YANDEX_ORG_ID }}
yandex_oauth2_token: ${{ secrets.YANDEX_OAUTH2_TOKEN }}
task_url: true
ignore: ERP-31,ERP-32
- name: Move Task When PR Merged
if: github.event.pull_request.merged == true
uses: ./
with:
token: ${{ secrets.GITHUB_TOKEN }}
yandex_org_id: ${{ secrets.YANDEX_ORG_ID }}
yandex_oauth2_token: ${{ secrets.YANDEX_OAUTH2_TOKEN }}
task_url: true
ignore: ERP-31,ERP-32