diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 134cce95..d292fdf4 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @benken @mikecoomber @thelukewalton \ No newline at end of file +* @ZebraDevs/front-end-devs \ No newline at end of file diff --git a/.github/workflows/on-push.yml b/.github/workflows/on-push.yml new file mode 100644 index 00000000..71f81e0e --- /dev/null +++ b/.github/workflows/on-push.yml @@ -0,0 +1,40 @@ +name: On Push Action + +on: push + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Log Step 1 + run: echo "This is step 1" + + - name: Log Step 2 + run: echo "This is step 2" + + - name: Log Step 3 + run: echo "This is step 3" + + - name: Log Step 4 + run: echo "This is step 4" + + - name: Post coverage comment + if: always() + uses: actions/github-script@v6 + with: + script: | + const steps = [ + { name: 'Checkout code', outcome: '${{ steps.checkout.outcome }}' }, + { name: 'Log Step 1', outcome: '${{ steps.step1.outcome }}' }, + { name: 'Log Step 2', outcome: '${{ steps.step2.outcome }}' }, + { name: 'Log Step 3', outcome: '${{ steps.step3.outcome }}' }, + { name: 'Log Step 4', outcome: '${{ steps.step4.outcome }}' } + ]; + + steps.forEach(step => { + console.log(`Step: ${step.name}, Outcome: ${step.outcome}`); + }); \ No newline at end of file diff --git a/README.md b/README.md index 3557897e..07dbd81f 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ An example app can be found in this repo under `/example`. This shows all compon To view examples of all the components in the library, you can pull this repo and run either the example app or widgetbook instance. -You can also view the latest release at [Zeta](https://zeta-ds.web.app/) or the latest commits to main [here](https://zeta-flutter-main.web.app/). +You can also view the latest release at [Zeta](https://design.zebra.com/) or the latest commits to main [here](https://zeta-flutter-main.web.app/). ## Template