Skip to content

Add script to generate release tag #99

Add script to generate release tag

Add script to generate release tag #99

Workflow file for this run

name: 'Code Owners'
concurrency:
group: codeowners-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
branches: [main]
types: [opened, reopened, synchronize, ready_for_review, labeled, unlabeled]
permissions: {}
jobs:
codeowners:
name: 'Run Codeowners Plus'
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: read
steps:
- name: 'Checkout Code Repository'
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 'Update action.yml to build locally'
run: |
sed -i "s/image: .*/image: 'Dockerfile'/" action.yml
cat action.yml
- name: 'Codeowners Plus'
uses: ./
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
pr: '${{ github.event.pull_request.number }}'
verbose: true
quiet: ${{ github.event.pull_request.draft }}