Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename of github organization to owner #2

Merged
merged 2 commits into from
Jun 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ Acceptance Testing For `terraform-provider-github`
uses: terraformtesting/[email protected]
with:
RUN_FILTER: ${{ env.RUN_FILTER }}
GITHUB_ORGANIZATION: terraformtesting
GITHUB_BASE_URL: https://api.github.com/
GITHUB_OWNER: terraformtesting
GITHUB_TEST_USER: github-terraform-test-user
GITHUB_TEST_USER_NAME: github-terraform-test-user
GITHUB_TEST_USER_EMAIL: [email protected]
Expand Down
7 changes: 5 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ inputs:
RUN_FILTER:
description: 'A string to pass to `go test -run` to run a subset of tests'
default: '*'
GITHUB_ORGANIZATION:
description: 'GitHub Organization to run tests against'
GITHUB_BASE_URL:
description: 'GitHub base API endpoint used during test runs'
required: true
GITHUB_OWNER:
description: 'GitHub Owner to run tests against'
required: true
GITHUB_TEST_USER:
description: 'GitHub user to run tests as'
Expand Down
3 changes: 2 additions & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

# Parse Action inputs into environment variables
export RUN_FILTER=${INPUT_RUN_FILTER}
export GITHUB_ORGANIZATION=${INPUT_GITHUB_ORGANIZATION}
export GITHUB_BASE_URL=${INPUT_GITHUB_BASE_URL}
export GITHUB_OWNER=${INPUT_GITHUB_OWNER}
export GITHUB_TEST_USER=${INPUT_GITHUB_TEST_USER}
export GITHUB_TEST_USER_TOKEN=${INPUT_GITHUB_TEST_USER_TOKEN}
export GITHUB_TEST_USER_NAME=${INPUT_GITHUB_TEST_USER_NAME}
Expand Down