Skip to content

Commit

Permalink
Update documentation and remove obsolete files (#63)
Browse files Browse the repository at this point in the history
* Update documentation and remove obsolete files

* limit concurrency

* minor edits
  • Loading branch information
rzblue authored Jan 1, 2025
1 parent 75a2eca commit f787f2c
Show file tree
Hide file tree
Showing 10 changed files with 76 additions and 584 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
push:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "run-json-checker"
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/generate_bundles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ on:
push:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
# On main, deploy one at a time and do not interrupt
cancel-in-progress: ${{ !(github.repository == 'wpilibsuite/vendor-json-repo' && github.ref == 'refs/heads/main')}}

jobs:
generate:
runs-on: ubuntu-latest
Expand All @@ -12,7 +17,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: python generate_year_bundles.py -o bundles 2024 2025beta
- run: python generate_bundles.py -o bundles 2024 2025beta
- uses: actions/upload-artifact@v4
with:
name: bundles
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
push:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
YEAR: 2025beta

Expand Down
138 changes: 0 additions & 138 deletions 2024.json

This file was deleted.

Loading

0 comments on commit f787f2c

Please sign in to comment.