When working set is too large Bazel Sync is failing with the error "Argument list too long" #84
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: Issue labeler | |
on: | |
issues: | |
types: [ opened ] | |
jobs: | |
label-issues-policy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
issues: write | |
strategy: | |
matrix: | |
template: [ bug_report.yml, feature_request.yml ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Parse issue form | |
uses: stefanbuck/github-issue-parser@c1a559d78bfb8dd05216dab9ffd2b91082ff5324 # v3.0.1 | |
id: issue-parser | |
with: | |
template-path: .github/ISSUE_TEMPLATE/${{ matrix.template }} | |
- name: Set labels based on policy | |
uses: redhat-plumbers-in-action/advanced-issue-labeler@6ee6fddfd744ee26b977e6a0436916f256896971 # v2.0.3 | |
with: | |
issue-form: ${{ steps.issue-parser.outputs.jsonString }} | |
template: ${{ matrix.template }} | |
token: ${{ secrets.GITHUB_TOKEN }} |