Merge pull request #6276 from thornbill/plugin-categories #138
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: Push & Release π | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event_name == 'push' && github.ref }} | ||
cancel-in-progress: true | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- release* | ||
paths-ignore: | ||
- '**/*.md' | ||
jobs: | ||
automation: | ||
name: Automation ποΈ | ||
if: ${{ github.repository == 'jellyfin/jellyfin-web' }} | ||
uses: ./.github/workflows/__automation.yml | ||
secrets: inherit | ||
main: | ||
name: 'Unstable release πβ οΈ' | ||
uses: ./.github/workflows/__package.yml | ||
with: | ||
commit: ${{ github.sha }} | ||
quality_checks: | ||
name: Quality checks ππ§ͺ | ||
if: ${{ always() && !cancelled() }} | ||
uses: ./.github/workflows/__quality_checks.yml | ||
permissions: {} | ||
with: | ||
commit: ${{ github.sha }} | ||
codeql: | ||
name: GitHub CodeQL π¬ | ||
uses: ./.github/workflows/__codeql.yml | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
with: | ||
commit: ${{ github.sha }} | ||
deploy: | ||
name: Deploy π | ||
if: ${{ github.repository == 'jellyfin/jellyfin-web' }} | ||
uses: ./.github/workflows/__deploy.yml | ||
needs: | ||
- main | ||
permissions: | ||
contents: read | ||
deployments: write | ||
secrets: inherit | ||
with: | ||
branch: ${{ github.ref_name }} | ||
comment: | ||