[keyserver] Write a script to compare database role permissions match… #2508
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: Remove extraneous Harbormaster git tags | |
on: | |
push: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: sudo ./install_protobuf.sh | |
working-directory: ./scripts | |
run: sudo ./install_protobuf.sh | |
- name: yarn ci-cleaninstall | |
run: yarn ci-cleaninstall | |
- name: Generate tag removal script | |
working-directory: ./scripts | |
env: | |
PHABRICATOR_API_TOKEN: ${{secrets.PHABRICATOR_API_TOKEN}} | |
run: node generate-phab-tag-removal-script.js | |
- name: Run tag removal script | |
working-directory: ./scripts | |
run: chmod +x tag_removal_script.sh && ./tag_removal_script.sh |