Revert "dummy (#15)" #10
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
# This workflow will remove the lgtm label from a PR that gets updated. | |
# This prevents any un-reviewed code from being automatically merged by the lgtm-merger mechanism. | |
name: "Remove lgtm label" | |
on: pull_request | |
jobs: | |
remove-lgtm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: jpmcb/[email protected] | |
with: | |
jobs: 'lgtm' | |
github-token: "${{ secrets.GITHUB_TOKEN }}" |