mirror of
https://github.com/zen-browser/desktop.git
synced 2025-09-05 19:08:18 +00:00

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Signed-off-by: mr. m <91018726+mauro-balades@users.noreply.github.com>
25 lines
505 B
YAML
25 lines
505 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@v2
|
|
|
|
- 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
|