Add new discussions to project #5
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: Add new organization discussions to project | |
on: | |
discussion: | |
types: [created, reopened] | |
jobs: | |
add-to-project: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate token | |
id: generate_token | |
uses: tibdex/github-app-token@v2 | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
- name: Debug Context | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ steps.generate_token.outputs.token }} | |
script: | | |
console.log('Full github context:', JSON.stringify(github, null, 2)); | |
console.log('Event name:', github.context.eventName); | |
console.log('Action:', github.context.action); | |
console.log('Actor:', github.context.actor); | |
console.log('Payload:', JSON.stringify(github.context.payload, null, 2)); | |
- name: Get discussion details | |
id: get_discussion | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ steps.generate_token.outputs.token }} | |
script: | | |
try { | |
if (!github.context || !github.context.payload) { | |
throw new Error('GitHub context or payload is undefined'); | |
} | |
const orgLogin = github.context.payload.organization?.login; | |
if (!orgLogin) { | |
throw new Error('Organization login not found in payload'); | |
} | |
console.log('Organization login:', orgLogin); | |
const query = `query($org: String!) { | |
organization(login: $org) { | |
discussionCategories(first: 10) { | |
nodes { | |
discussions(first: 1, orderBy: {field: CREATED_AT, direction: DESC}) { | |
nodes { | |
id | |
title | |
createdAt | |
} | |
} | |
} | |
} | |
} | |
}`; | |
const variables = { org: orgLogin }; | |
console.log('GraphQL variables:', JSON.stringify(variables)); | |
const result = await github.graphql(query, variables); | |
console.log('GraphQL result:', JSON.stringify(result, null, 2)); | |
const discussions = result.organization.discussionCategories.nodes.flatMap(category => category.discussions.nodes); | |
const mostRecentDiscussion = discussions.sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt))[0]; | |
if (mostRecentDiscussion) { | |
console.log('Most recent discussion:', JSON.stringify(mostRecentDiscussion, null, 2)); | |
return mostRecentDiscussion.id; | |
} else { | |
throw new Error('No discussions found'); | |
} | |
} catch (error) { | |
console.error('Error in get_discussion step:', error.message); | |
console.error('Error stack:', error.stack); | |
throw error; | |
} | |
- name: Add to Project | |
uses: actions/[email protected] | |
with: | |
project-url: https://github.com/orgs/stampchain-io/projects/3 | |
github-token: ${{ steps.generate_token.outputs.token }} | |
content-id: ${{ steps.get_discussion.outputs.result }} |