Skip to content

Commit

Permalink
Merge pull request #164 from ansibleguy/fix-contrib-notes+alias-self
Browse files Browse the repository at this point in the history
Fix contrib notes+alias self
  • Loading branch information
ansibleguy authored Feb 8, 2025
2 parents 4da502d + 9597aeb commit 7eeb4df
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/integration_test_result.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---

name: Integration-Test Result

on:

Check warning on line 5 in .github/workflows/integration_test_result.yml

View workflow job for this annotation

GitHub Actions / lint

5:1 [truthy] truthy value should be one of [false, no, true, yes]
schedule:
- cron: "25 6 * * *"
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 1

steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}

- name: Install dependencies
run: sudo apt install curl jq
shell: bash

- name: Checking job-state
run: >
RESULT="$(curl https://ci.ansibleguy.net/api/job/ansible-test-collection-opnsense/state?token=${{ secrets.CI_TOKEN_RO }} | jq -r '.state')"
if [[ "$RESULT" == "failed" ]]
then
exit 1
fi
shell: bash

0 comments on commit 7eeb4df

Please sign in to comment.