Skip to content

Add licenses disclosure, privacy policy, and terms links to About tab #374

Add licenses disclosure, privacy policy, and terms links to About tab

Add licenses disclosure, privacy policy, and terms links to About tab #374

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: write
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
uses: ./.github/workflows/_lint.yml
test-unit:
uses: ./.github/workflows/_test-unit.yml
test-integration:
uses: ./.github/workflows/_test-integration.yml
test-e2e:
uses: ./.github/workflows/_test-e2e.yml
build:
uses: ./.github/workflows/_build.yml
screenshots:
uses: ./.github/workflows/_update-screenshots.yml
tag-release:
needs: [lint, test-unit, test-integration, test-e2e, build, screenshots]
if: github.event_name == 'push'
uses: ./.github/workflows/_tag-release.yml
with:
screenshots-changed: ${{ needs.screenshots.outputs.changed == 'true' }}
secrets:
AUTOMATION_GITHUB_APP_ID: ${{ secrets.AUTOMATION_GITHUB_APP_ID }}
AUTOMATION_GITHUB_APP_PRIVATE_KEY: ${{ secrets.AUTOMATION_GITHUB_APP_PRIVATE_KEY }}