Bumps [actions/add-to-project](https://github.com/actions/add-to-project) from f5473ace9aeee8b97717b281e26980aa5097023f to 280af8ae1f83a494cfad2cb10f02f6d13529caa9. <details> <summary>Commits</summary> <ul> <li><a href="280af8ae1f"><code>280af8a</code></a> Merge pull request <a href="https://redirect.github.com/actions/add-to-project/issues/688">#688</a> from actions/dependabot/npm_and_yarn/vercel/ncc-0.38.3</li> <li><a href="a5abfebda9"><code>a5abfeb</code></a> Update licensed cache and dist/ directory</li> <li><a href="f30c2e67f8"><code>f30c2e6</code></a> Bump <code>@vercel/ncc</code> from 0.38.1 to 0.38.3</li> <li><a href="81dd5ce97f"><code>81dd5ce</code></a> Merge pull request <a href="https://redirect.github.com/actions/add-to-project/issues/687">#687</a> from actions/dependabot/npm_and_yarn/types/jest-29.5.14</li> <li><a href="122a803742"><code>122a803</code></a> Bump <code>@types/jest</code> from 29.5.12 to 29.5.14</li> <li><a href="29c72ac924"><code>29c72ac</code></a> Merge pull request <a href="https://redirect.github.com/actions/add-to-project/issues/686">#686</a> from actions/dependabot/npm_and_yarn/types/node-22.13.14</li> <li><a href="46316d9a20"><code>46316d9</code></a> Bump <code>@types/node</code> from 16.18.101 to 22.13.14</li> <li><a href="95df5ae4db"><code>95df5ae</code></a> Merge pull request <a href="https://redirect.github.com/actions/add-to-project/issues/685">#685</a> from actions/dependabot/npm_and_yarn/eslint-plugin-je...</li> <li><a href="f14f229b02"><code>f14f229</code></a> Bump eslint-plugin-jest from 28.6.0 to 28.11.0</li> <li><a href="cc696180af"><code>cc69618</code></a> Exit without failure if nothing to commit</li> <li>Additional commits viewable in <a href="f5473ace9a...280af8ae1f">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
45 lines
1.4 KiB
YAML
45 lines
1.4 KiB
YAML
name: Move labelled issues to correct projects
|
|
|
|
on:
|
|
issues:
|
|
types: [ labeled ]
|
|
|
|
jobs:
|
|
move_needs_info:
|
|
name: Move X-Needs-Info on the triage board
|
|
runs-on: ubuntu-latest
|
|
if: >
|
|
contains(github.event.issue.labels.*.name, 'X-Needs-Info')
|
|
steps:
|
|
- uses: actions/add-to-project@280af8ae1f83a494cfad2cb10f02f6d13529caa9 # main (v1.0.2 + 10 commits)
|
|
id: add_project
|
|
with:
|
|
project-url: "https://github.com/orgs/matrix-org/projects/67"
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
|
- name: Set status
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
|
run: |
|
|
gh api graphql -f query='
|
|
mutation(
|
|
$project: ID!
|
|
$item: ID!
|
|
$fieldid: ID!
|
|
$columnid: String!
|
|
) {
|
|
updateProjectV2ItemFieldValue(
|
|
input: {
|
|
projectId: $project
|
|
itemId: $item
|
|
fieldId: $fieldid
|
|
value: {
|
|
singleSelectOptionId: $columnid
|
|
}
|
|
}
|
|
) {
|
|
projectV2Item {
|
|
id
|
|
}
|
|
}
|
|
}' -f project="PVT_kwDOAIB0Bs4AFDdZ" -f item=${{ steps.add_project.outputs.itemId }} -f fieldid="PVTSSF_lADOAIB0Bs4AFDdZzgC6ZA4" -f columnid=ba22e43c --silent
|