test-github-is-pr-author-member-of #55
Workflow file for this run
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
name: test-github-is-pr-author-member-of | |
on: | |
merge_group: ~ | |
workflow_dispatch: | |
inputs: | |
dry-run: | |
description: 'Dry run' | |
required: true | |
default: false | |
type: boolean | |
push: | |
paths: | |
- '.github/workflows/test-github-is-pr-author-member-of.yml' | |
- 'github/is-pr-author-member-of/**' | |
permissions: | |
contents: read | |
jobs: | |
test: | |
if: always() | |
needs: | |
- is-member | |
- is-not-member | |
runs-on: ubuntu-latest | |
steps: | |
- id: check | |
uses: elastic/oblt-actions/check-dependent-jobs@v1 | |
with: | |
jobs: ${{ toJSON(needs) }} | |
- run: ${{ steps.check.outputs.is-success }} | |
is-member: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: elastic/oblt-actions/git/setup@v1 | |
- name: Get token | |
id: get_token | |
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 | |
with: | |
app_id: ${{ secrets.OBS_AUTOMATION_APP_ID }} | |
private_key: ${{ secrets.OBS_AUTOMATION_APP_PEM }} | |
permissions: >- | |
{ | |
"members": "read", | |
"pull_requests": "read" | |
} | |
- uses: ./github/is-pr-author-member-of | |
id: validation | |
with: | |
github-token: ${{ steps.get_token.outputs.token }} | |
github-org: "elastic" | |
repository: "oblt-actions" | |
pull-request: "59" | |
- name: Assert is member | |
run: test "${{steps.validation.outputs.result}}" = "true" | |
is-not-member: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: elastic/oblt-actions/git/setup@v1 | |
- name: Get token | |
id: get_token | |
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 | |
with: | |
app_id: ${{ secrets.OBS_AUTOMATION_APP_ID }} | |
private_key: ${{ secrets.OBS_AUTOMATION_APP_PEM }} | |
permissions: >- | |
{ | |
"members": "read" | |
} | |
- uses: ./github/is-pr-author-member-of | |
id: validation | |
with: | |
github-token: ${{ steps.get_token.outputs.token }} | |
github-org: "elastic" | |
repository: "oblt-actions" | |
## use dependabot PR | |
pull-request: "145" | |
- name: Assert is not member | |
run: test "${{steps.validation.outputs.result}}" = "false" |