diff --git a/.github/workflows/invalid_template.yml b/.github/workflows/invalid_template.yml index f8be80fe..0c2e259a 100644 --- a/.github/workflows/invalid_template.yml +++ b/.github/workflows/invalid_template.yml @@ -14,6 +14,6 @@ jobs: support-label: 'invalid:template-incomplete' issue-comment: > :wave: @{issue-author}, please edit your issue and follow the template provided. - close-issue: false - lock-issue: false + close-issue: true + lock-issue: true issue-lock-reason: 'resolved' diff --git a/.github/workflows/snap.yaml b/.github/workflows/snap.yaml index b7a2278a..a2c1f94c 100644 --- a/.github/workflows/snap.yaml +++ b/.github/workflows/snap.yaml @@ -5,10 +5,19 @@ on: branches: [develop] jobs: - test: - name: Lint & Test Build + jobs: + name: Job Check runs-on: ubuntu-20.04 if: "!contains(github.event.head_commit.message, '[skip ci]')" + steps: + - name: Cancel Previous Runs + uses: styfle/cancel-workflow-action@0.8.0 + with: + access_token: ${{ secrets.GITHUB_TOKEN }} + test: + name: Lint & Test Build + needs: jobs + runs-on: ubuntu-20.04 container: node:12.18-alpine steps: - name: checkout @@ -30,7 +39,7 @@ jobs: matrix: architecture: - amd64 - - arm64 + #- arm64 Disable until there is a workaround or fix. - armhf steps: - name: Checkout Code