Fixed typos in CodeMemberDescriptor javadoc strings. #76
Workflow file for this run
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: Label opened prs | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
jobs: | |
move_prs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Move to the PR-WIP column | |
uses: leonsteinhaeuser/project-beta-automations@v2.0.1 | |
with: | |
gh_token: ${{ secrets.LISA_PAT }} | |
organization: lisa-analyzer | |
project_id: 3 | |
resource_node_id: ${{ github.event.pull_request.node_id }} | |
status_value: 'PR WIP' | |
- name: Add WIP label | |
uses: andymckay/labeler@22d5392de2b725cea4b284df5824125054049d84 | |
with: | |
add-labels: '🏗 resolution:wip' | |
repo-token: ${{ secrets.LISA_PAT }} |