Skip to content

Commit

Permalink
Don't use fork
Browse files Browse the repository at this point in the history
  • Loading branch information
pjreiniger committed Dec 19, 2024
1 parent d2efa09 commit a54c8d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/actions/add_vendordep/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ runs:
steps:
- uses: actions/checkout@v4
with:
repository: 'pjreiniger/vendor-json-repo' # TODO
repository: 'wpilibsuite/vendor-json-repo'
fetch-depth: 0 # Fetch all history so we can use git diff
path: "vendor-json-repo"
ref: "add_vendordep_action" # TODO
ref: "main"

- uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Pyunit tests are automatically auto generated run using the checker tool against
To run the tests, simply run `bazel test //...`. Alternatively, you can run the `checker.py` tool in a standalone mode by running `bazel run //:checker -- <command line arguments from above>`

## Automatically creating pull requests
If your libraries CI creates a new vendordep.json file, you can use an action contained in this repository to automatically create a pull request to add your changes.
If your libraries CI creates a new vendordep.json file, you can use an action contained in this repository to automatically create a pull request to add your changes. In order for the action to work, you must define a secret with write access to be able to create the pull request.

Here is an example workflow:

Expand Down

0 comments on commit a54c8d5

Please sign in to comment.