Skip to content

validate_pr github workflow needs write permission (#209) #1040

validate_pr github workflow needs write permission (#209)

validate_pr github workflow needs write permission (#209) #1040

Workflow file for this run

---
# Workflow to automate creation and updating of release branches
name: Release Branching
# Trigger on tags created by TeamCity
on:
push:
tags:
- '*'
permissions:
pull-requests: write
contents: write
jobs:
branch_release:
if: github.event.created && github.event.sender.login == 'labkey-teamcity'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Create branches and PRs
uses: LabKey/gitHubActions/branch-release@develop
with:
github_token: ${{ secrets.GITHUB_TOKEN }}