Bump elgohr/Publish-Docker-Github-Action from eb53b3ec07136a6ebaed78d8135806da64f7c7e2 to 4feac4d53e4e55dcc5d3e2ad0ed2e0a76028ff7a in the github-actions group #107
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |