Add language to a rule #210
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: Add language to a rule | |
# Workflow runs when manually triggered using the UI or API. | |
on: | |
workflow_dispatch: | |
# Inputs the workflow accepts. | |
inputs: | |
rule: | |
description: 'ID of an existing rule (e.g., S1234).' | |
required: true | |
language: | |
description: 'Language to be added to the rule, (e.g., cfamily)' | |
required: true | |
jobs: | |
add_language_to_rule: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: true | |
ref: master | |
path: 'rspec' | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: 'Install Pipenv' | |
run: | | |
pip install pipenv | |
- name: 'Install rspec-tools' | |
working-directory: 'rspec/rspec-tools' | |
run: pipenv install | |
- name: 'Add Language' | |
working-directory: 'rspec/rspec-tools' | |
run: pipenv run rspec-tools add-lang-to-rule --user ${{ github.actor }} --language "${{ github.event.inputs.language }}" --rule "${{ github.event.inputs.rule }}" |