From 90d99bd9a5358a28bca1a79628808763e843a19a Mon Sep 17 00:00:00 2001 From: Rob Ankeny Date: Fri, 26 Jul 2024 14:16:50 -0700 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..13050dc --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,15 @@ +name: Run GitHub App on Pull Request + +on: + pull_request: + types: [opened, synchronize] + +jobs: + run-github-app: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Run GitHub App + uses: InvariantTech/invariant-tech@latest