From b88e6fb8451ad263458b0a579409b89f980909f0 Mon Sep 17 00:00:00 2001 From: Walt Della Date: Tue, 28 Nov 2023 16:18:48 -0800 Subject: [PATCH] Add test files --- .github/workflows/test-one.yml | 21 +++++++++++++++++++++ .github/workflows/test-two.yml | 21 +++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 .github/workflows/test-one.yml create mode 100644 .github/workflows/test-two.yml diff --git a/.github/workflows/test-one.yml b/.github/workflows/test-one.yml new file mode 100644 index 0000000..3053143 --- /dev/null +++ b/.github/workflows/test-one.yml @@ -0,0 +1,21 @@ +on: + pull_request: + branches: + - main + +name: Test One + +jobs: + check-github-actions: + name: Check GitHub Actions + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Check for affected paths + id: changes + uses: dorny/paths-filter@v2.11.1 + with: + filters: | + github-actions: + - '.github/*/**/*.{yaml,yml}' diff --git a/.github/workflows/test-two.yml b/.github/workflows/test-two.yml new file mode 100644 index 0000000..0451ea0 --- /dev/null +++ b/.github/workflows/test-two.yml @@ -0,0 +1,21 @@ +on: + pull_request: + branches: + - main + +name: Test Two + +jobs: + checkout: + name: Check GitHub Actions + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + update-ami-ids: + name: Update AMI IDs + uses: gravitational/teleport/.github/workflows/update-ami-ids.yaml@master + secrets: inherit + with: + version: v0.0.0 +