Skip to content

[Prep] EC in EX: Discovery - Can we use Element Call within a web view? #1142

[Prep] EC in EX: Discovery - Can we use Element Call within a web view?

[Prep] EC in EX: Discovery - Can we use Element Call within a web view? #1142

Workflow file for this run

name: Move new issues into Triage board
on:
issues:
types: [opened, transferred]
jobs:
triage_new_issues:
name: New items to Triage board
runs-on: ubuntu-latest
steps:
- uses: octokit/graphql-action@v2.x
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_kwDOAM0swc4AA19d"
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}