Add new discussions to project #29
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 discussions to project | |
on: | |
discussion: | |
types: [created, reopened] | |
jobs: | |
add-to-project: | |
name: Add discussion 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 - Print Context | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: | | |
echo "GitHub Context: $GITHUB_CONTEXT" | |
echo "Discussion ID: ${{ github.event.discussion.node_id }}" | |
echo "Discussion Number: ${{ github.event.discussion.number }}" | |
echo "Organization: ${{ github.organization.login }}" | |
- name: Add to project | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{ steps.generate_token.outputs.token }} | |
script: | | |
const projectId = 'PVT_kwDOCAGLAM4Anzfw'; | |
const contentId = context.payload.discussion.node_id; | |
const discussionNumber = context.payload.discussion.number; | |
const orgName = context.payload.organization.login; | |
console.log(`Adding discussion ${contentId} (number ${discussionNumber}) to project ${projectId}`); | |
console.log(`Organization: ${orgName}`); | |
try { | |
// Add the discussion directly to the project using its node_id | |
const response = await github.graphql(` | |
mutation($projectId: ID!, $contentId: ID!) { | |
addProjectV2ItemById(input: {projectId: $projectId, contentId: $contentId}) { | |
item { | |
id | |
} | |
} | |
} | |
`, { | |
projectId: projectId, | |
contentId: contentId | |
}); | |
console.log('Response:', JSON.stringify(response, null, 2)); | |
} catch (error) { | |
console.error('Error:', error.message); | |
core.setFailed(error.message); | |
} |