Skip to content

Commit

Permalink
[Validate job] copy token to GH_TOKEN, enable thank you comment
Browse files Browse the repository at this point in the history
The "thank you" comment had been disabled for TPAC meetings, but needs to be
enabled for breakouts.
  • Loading branch information
tidoust committed Jun 25, 2024
1 parent 0036f6f commit 880bcb1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/validate-session.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
github-token: ${{ secrets.GRAPHQL_TOKEN }}

- name: Add thank you comment with links to documentation
if: ${{ false && github.event.action == 'opened' }}
if: ${{ github.event.action == 'opened' }}
run: gh issue comment "$NUMBER" --body-file "$BODY_FILE"
env:
GH_TOKEN: ${{ secrets.GRAPHQL_TOKEN }}
Expand All @@ -76,6 +76,7 @@ jobs:
# Same valid Personal Access Token (classic version) as above, with
# project and public_repo scope.
GRAPHQL_TOKEN: ${{ secrets.GRAPHQL_TOKEN }}
GH_TOKEN: ${{ secrets.GRAPHQL_TOKEN }}

# Mapping between chair GitHub identities and W3C IDs must be stored
# in a variable. Structure is a JSON object with identities as keys.
Expand All @@ -91,6 +92,7 @@ jobs:
# Same valid Personal Access Token (classic version) as above, with
# project and public_repo scope.
GRAPHQL_TOKEN: ${{ secrets.GRAPHQL_TOKEN }}
GH_TOKEN: ${{ secrets.GRAPHQL_TOKEN }}

# Information about the team user on behalf of which the updates to
# the calendar will be made. The password must obviously be stored
Expand Down

0 comments on commit 880bcb1

Please sign in to comment.