Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions .github/workflows/auto-update.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
name: Push new tag update to stable branch

on:
schedule:
# Daily for now
- cron: '9 7 * * *'
pull_request:
push:
branches:
- edge
- stable
workflow_dispatch:

jobs:
update-snapcraft-yaml:
runs-on: ubuntu-latest
steps:
- name: Checkout this repo
uses: actions/checkout@v3
- name: Run desktop-snaps action
uses: ubuntu/desktop-snaps@stable
with:
token: ${{ secrets.GITHUB_TOKEN }}
repo: ${{ github.repository }}
- name: Checkout this repo
uses: actions/checkout@v4
- name: Run desktop-snaps action
uses: sergio-costas/ci/update-snap@add-updatesnap-tool
with:
token: ${{ secrets.GITHUB_TOKEN }}
repo: ${{ github.repository }}
Loading