Skip to content

FR-5759 - Use meta/gadget.yaml for the gadget yaml path for classic #300

FR-5759 - Use meta/gadget.yaml for the gadget yaml path for classic

FR-5759 - Use meta/gadget.yaml for the gadget yaml path for classic #300

Workflow file for this run

name: Has snapcraft.yaml been updated?
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: changelog-check
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get info on if snapcraft.yaml has changed
id: changed-files-specific
uses: tj-actions/changed-files@v32
with:
files: |
snapcraft.yaml
- name: Fail if snapcraft.yaml has not changed
if: steps.changed-files-specific.outputs.any_changed != 'true'
run: |
echo "snapcraft.yaml has not been updated. The version must be incremented."
exit 1