Skip to content

Commit

Permalink
Add automation workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Heather Ellsworth committed May 23, 2023
1 parent 1b99e35 commit 445cc0f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/auto-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Push new tag update to stable branch

on:
schedule:
# Daily for now
- cron: '9 7 * * *'
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 }}

0 comments on commit 445cc0f

Please sign in to comment.