Skip to content

chore(docs): add environment variables support for secret and token #20

chore(docs): add environment variables support for secret and token

chore(docs): add environment variables support for secret and token #20

Workflow file for this run

---
name: Acceptance Tests
on:
pull_request:
types: [ labeled ]
jobs:
test:
if: ${{ github.event.label.name == 'testacc' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Acceptance Tests
run: make testacc
env:
CC_OAUTH_TOKEN: ${{ secrets.CC_OAUTH_TOKEN }}
CC_OAUTH_SECRET: ${{ secrets.CC_OAUTH_SECRET }}
ORGANISATION: ${{ secrets.ORGANISATION }}
...