forked from gee-community/geemap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
121 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# Run secret-dependent integration tests only after /ok-to-test approval | ||
on: | ||
pull_request: | ||
repository_dispatch: | ||
types: [ok-to-test-command] | ||
|
||
name: Integration tests | ||
|
||
jobs: | ||
# Branch-based pull request | ||
integration-trusted: | ||
runs-on: ubuntu-latest | ||
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository | ||
steps: | ||
|
||
- name: Branch based PR checkout | ||
uses: actions/checkout@v2 | ||
|
||
# <insert integration tests needing secrets> | ||
|
||
# Repo owner has commented /ok-to-test on a (fork-based) pull request | ||
integration-fork: | ||
runs-on: ubuntu-latest | ||
if: | ||
github.event_name == 'repository_dispatch' && | ||
github.event.client_payload.slash_command.sha != '' && | ||
contains(github.event.client_payload.pull_request.head.sha, github.event.client_payload.slash_command.sha) | ||
steps: | ||
|
||
# Check out merge commit | ||
- name: Fork based /ok-to-test checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: 'refs/pull/${{ github.event.client_payload.pull_request.number }}/merge' | ||
|
||
# <insert integration tests needing secrets> | ||
|
||
- run: | | ||
echo "Integration tests... success! ;-)" | ||
# Update check run called "integration-fork" | ||
- uses: actions/github-script@v1 | ||
id: update-check-run | ||
if: ${{ always() }} | ||
env: | ||
number: ${{ github.event.client_payload.pull_request.number }} | ||
job: ${{ github.job }} | ||
# Conveniently, job.status maps to https://developer.github.com/v3/checks/runs/#update-a-check-run | ||
conclusion: ${{ job.status }} | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const { data: pull } = await github.pulls.get({ | ||
...context.repo, | ||
pull_number: process.env.number | ||
}); | ||
const ref = pull.head.sha; | ||
const { data: checks } = await github.checks.listForRef({ | ||
...context.repo, | ||
ref | ||
}); | ||
const check = checks.check_runs.filter(c => c.name === process.env.job); | ||
const { data: result } = await github.checks.update({ | ||
...context.repo, | ||
check_run_id: check[0].id, | ||
status: 'completed', | ||
conclusion: process.env.conclusion | ||
}); | ||
return result; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# If someone with write access comments "/ok-to-test" on a pull request, emit a repository_dispatch event | ||
name: Label | ||
|
||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
jobs: | ||
ok-to-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Generate a GitHub App installation access token from an App ID and private key | ||
# To create a new GitHub App: | ||
# https://developer.github.com/apps/building-github-apps/creating-a-github-app/ | ||
# See app.yml for an example app manifest | ||
- name: Generate token | ||
id: generate_token | ||
uses: tibdex/github-app-token@v1 | ||
with: | ||
app_id: ${{ secrets.APP_ID }} | ||
private_key: ${{ secrets.PRIVATE_KEY }} | ||
|
||
- name: Slash Command Dispatch | ||
uses: peter-evans/slash-command-dispatch@v1 | ||
env: | ||
TOKEN: ${{ steps.generate_token.outputs.token }} | ||
with: | ||
# token: ${{ env.TOKEN }} # GitHub App installation access token | ||
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} # PAT or OAuth token will also work | ||
reaction-token: ${{ secrets.GITHUB_TOKEN }} | ||
issue-type: pull-request | ||
commands: ok-to-test | ||
named-args: true | ||
permission: write |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Run unit tests on any branch/fork pull request | ||
on: | ||
pull_request | ||
|
||
name: Unit tests | ||
|
||
jobs: | ||
unit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
# <insert integration tests needing secrets> | ||
|
||
- run: echo "Unit tests... success! ;-)" |