From b76612b868917341d9f19d11607c86390b67ba88 Mon Sep 17 00:00:00 2001 From: Dan Blanchard Date: Wed, 28 Aug 2024 09:42:46 -0400 Subject: [PATCH] Add CODEOWNERS and test workflow --- .github/workflows/test.yml | 23 +++++++++++++++++++++++ CODEOWNERS | 6 ++++++ 2 files changed, 29 insertions(+) create mode 100644 .github/workflows/test.yml create mode 100644 CODEOWNERS diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..b392b40 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,23 @@ +name: coiled-login-action + +on: + workflow_dispatch: + push: + branches: + - main + pull_request: + branches: + - '*' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v4 + + - name: Coiled Login Action + uses: ./ + with: + token: ${{ secrets.COILED_API_TOKEN }} + diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..a43a736 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,6 @@ +# These owners will be the default owners/reviewers for everything in +# the repo. Unless a later match takes precedence, +# the entire @coiled/platform team will be requested for +# review when someone opens a pull request in this repo. +* @coiled/platform +