Skip to content

Commit

Permalink
workflows: esr: fix missing runs-on
Browse files Browse the repository at this point in the history
Changelog-entry: Add missing runs-on to ESR workflow
Signed-off-by: Alex Gonzalez <[email protected]>
  • Loading branch information
alexgg committed Oct 2, 2023
1 parent d68a866 commit caee8a7
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/esr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@ on:

jobs:
esr:
- name: Exit on weekly runs
if: github.event.schedule != '0 0 2 */3 *'
run: exit 1
runs-on: ubuntu-latest
steps:
- name: Exit on weekly runs
if: github.event.schedule != '0 0 2 */3 *'
run: exit 1

- name: Create ESR branch and tag
uses: balena-os/github-workflows/.github/workflows/esr.yml@master
secrets: inherit
- name: Create ESR branch and tag
uses: balena-os/github-workflows/.github/workflows/esr.yml@master
secrets: inherit

0 comments on commit caee8a7

Please sign in to comment.