This repository was archived by the owner on Jul 21, 2025. It is now read-only.
Synapse not able to access Sygnal in docker compose #33
This file contains hidden or 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: Move new issues into the issue triage board | |
| on: | |
| issues: | |
| types: [ opened ] | |
| jobs: | |
| add_new_issues: | |
| name: Add new issues to the triage board | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: octokit/[email protected] | |
| id: add_to_project | |
| with: | |
| headers: '{"GraphQL-Features": "projects_next_graphql"}' | |
| query: | | |
| mutation add_to_project($projectid:ID!,$contentid:ID!) { | |
| addProjectV2ItemById(input: {projectId: $projectid contentId: $contentid}) { | |
| item { | |
| id | |
| } | |
| } | |
| } | |
| projectid: ${{ env.PROJECT_ID }} | |
| contentid: ${{ github.event.issue.node_id }} | |
| env: | |
| PROJECT_ID: "PVT_kwDOAIB0Bs4AFDdZ" | |
| GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }} |