Update actions/setup-java digest to 7a6d8a8 #2785
Workflow file for this run
This file contains 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: Automation 🤖 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
on: | |
push: | |
pull_request_target: | |
jobs: | |
project: | |
# don't run job on forks and prevent job from running twice when a PR pushes a new commit | |
if: github.repository == 'jellyfin/jellyfin-roku' && github.event_name != 'pull_request' || github.repository == 'jellyfin/jellyfin-roku' && github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
name: Project board 📊 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: alex-page/github-project-automation-plus@303f24a24c67ce7adf565a07e96720faf126fe36 # v0.9.0 | |
if: ${{ github.event_name == 'pull_request_target' }} | |
continue-on-error: true | |
with: | |
project: Ongoing development | |
column: In progress | |
repo-token: ${{ secrets.JF_BOT_TOKEN }} | |
label: | |
# don't run job on forks and prevent job from running twice when a PR pushes a new commit | |
if: github.repository == 'jellyfin/jellyfin-roku' && github.event_name != 'pull_request' || github.repository == 'jellyfin/jellyfin-roku' && github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
name: Labeling 🏷️ | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check all PRs for merge conflicts ⛔ | |
uses: eps1lon/actions-label-merge-conflict@releases/2.x | |
with: | |
dirtyLabel: "merge-conflict" | |
commentOnDirty: "This pull request has merge conflicts. Please resolve the conflicts so the PR can be reviewed. Thanks!" | |
repoToken: ${{ secrets.JF_BOT_TOKEN }} |