This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
英语 配置成功后,如何隐藏网页地址栏中的/_matrix/static/链接显示 Pèizhì chénggōng hòu, rúhé yǐncáng wǎngyè dìzhǐ lán zhōng de/_matrix/static/liànjiē xiǎnshì After successful configuration, how to hide the /_matrix/static/ link display in the address bar of the web page #3857
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: 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@main | |
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 |