mirror of
https://github.com/zen-browser/desktop.git
synced 2026-01-22 04:40:46 +00:00
* fix: Start working on more eslint rules, b=no-bug, c=common, mods, workspaces * chore: Continue migration, b=no-bug, c=workflows, windows, glance, mods, welcome, workspaces, common, compact-mode, folders, tests, kbs, media, split-view, tabs * chore: Finish, b=no-bug, c=common, compact-mode, folders, glance, tests, kbs, media, mods, split-view, tabs, workspaces, welcome * fix: Fix installing deps, b=no-bug, c=common * feat: Dont initialize git on download checks, b=no-bug, c=workflows * feat: Remove empty JS docs, b=no-bug, c=common, compact-mode, folders, glance, kbs, media, mods, split-view, tabs, tests, workspaces * chore: Run lint, b=no-bug, c=common, folders, glance, kbs, mods, split-view, tabs, workspaces
35 lines
725 B
YAML
35 lines
725 B
YAML
name: Check Firefox Candidate Release
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "59 4 * * 2"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check_candidates:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Check for any updates
|
|
env:
|
|
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
|
DISCORD_PING_IDS: ${{ secrets.DISCORD_PING_IDS }}
|
|
run: |
|
|
python3 scripts/check_rc_response.py
|
|
|
|
sync-upstream:
|
|
name: Sync Upstream
|
|
uses: ./.github/workflows/sync-upstream.yml
|
|
permissions:
|
|
contents: write
|
|
secrets: inherit
|
|
needs: [check_candidates]
|
|
with:
|
|
release_candidate: true
|