chore(deps): update dependency @bifravst/eslint-config-typescript to … #746
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: Sync repository info from package.json | |
env: | |
GITHUB_TOKEN: ${{ secrets.UPDATE_REPO_INFO_PAT }} | |
on: | |
push: | |
branches: | |
- saga | |
paths: | |
- "package.json" | |
- ".github/workflows/update-repo-info.yaml" | |
workflow_dispatch: | |
jobs: | |
update_repo_info: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Sync repository description | |
run: | |
gh repo edit --description "`cat package.json | jq -r '.description'`" | |
- name: Sync repository topics | |
run: | |
cat package.json | jq '.keywords[]' | xargs -I'{}' gh repo edit | |
--add-topic {} | |
- name: Sync homepage | |
run: gh repo edit --homepage "`cat package.json | jq -r '.homepage'`" |