mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
5ea16cb947
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
70 lines
2.5 KiB
YAML
70 lines
2.5 KiB
YAML
name: 'Ephemeral instances: PR opened/closed'
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened, closed]
|
|
jobs:
|
|
config:
|
|
runs-on: "ubuntu-latest"
|
|
outputs:
|
|
has-secrets: ${{ steps.check.outputs.has-secrets }}
|
|
steps:
|
|
- name: "Check for secrets"
|
|
id: check
|
|
shell: bash
|
|
run: |
|
|
if [ -n "${{ (secrets.EI_APP_ID != '' &&
|
|
secrets.EI_APP_PRIVATE_KEY != '' &&
|
|
secrets.EI_GCOM_HOST != '' &&
|
|
secrets.EI_GCOM_TOKEN != '' &&
|
|
secrets.EI_EPHEMERAL_INSTANCES_REGISTRY != '' &&
|
|
secrets.EI_GCP_SERVICE_ACCOUNT_KEY_BASE64 != '' &&
|
|
secrets.EI_EPHEMERAL_ORG_ID != ''
|
|
) || '' }}" ]; then
|
|
echo "has-secrets=1" >> "$GITHUB_OUTPUT"
|
|
fi
|
|
|
|
handle-pull-request-event:
|
|
needs: config
|
|
if: needs.config.outputs.has-secrets
|
|
runs-on: ubuntu-latest
|
|
continue-on-error: true
|
|
steps:
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '>=1.20'
|
|
|
|
- name: Generate a GitHub app installation token
|
|
id: generate_token
|
|
uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92
|
|
with:
|
|
app_id: ${{ secrets.EI_APP_ID }}
|
|
private_key: ${{ secrets.EI_APP_PRIVATE_KEY }}
|
|
|
|
- name: Checkout ephemeral instances repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: grafana/ephemeral-grafana-instances-github-action
|
|
token: ${{ steps.generate_token.outputs.token }}
|
|
ref: main
|
|
path: ephemeral
|
|
|
|
- name: Run action
|
|
env:
|
|
GITHUB_EVENT: ${{ toJson(github.event)}}
|
|
run: |
|
|
GRAFANA_VERSION=10.1.0
|
|
|
|
cd $GITHUB_WORKSPACE/ephemeral/src
|
|
go run . \
|
|
-GITHUB_TOKEN="${{ steps.generate_token.outputs.token }}" \
|
|
-GITHUB_EVENT="$GITHUB_EVENT" \
|
|
-GITHUB_TRIGGERING_ACTOR="${{ github.triggering_actor }}" \
|
|
-GCOM_HOST="${{ secrets.EI_GCOM_HOST }}" \
|
|
-GCOM_TOKEN="${{ secrets.EI_GCOM_TOKEN }}" \
|
|
-HOSTED_GRAFANA_IMAGE_TAG="unused" \
|
|
-REGISTRY="${{ secrets.EI_EPHEMERAL_INSTANCES_REGISTRY }}" \
|
|
-GRAFANA_VERSION="$GRAFANA_VERSION" \
|
|
-GCP_SERVICE_ACCOUNT_KEY_BASE64="${{ secrets.EI_GCP_SERVICE_ACCOUNT_KEY_BASE64 }}" \
|
|
-EPHEMERAL_ORG_ID="${{ secrets.EI_EPHEMERAL_ORG_ID }}" || true
|