Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md examples #108

Merged
merged 1 commit into from
Jun 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Used for inserting data into the [internal actions marketplace](https://github.c
Minimal uses expression to use this action:

``` yaml
uses: devops-actions/github-action-[email protected]
uses: devops-actions/[email protected]
with:
PAT: ${{ secrets.GITHUB_TOKEN }} # use an Access Token with correct permissions to view private repos if you need to
```
Expand All @@ -33,7 +33,7 @@ jobs:
load-all-used-actions:
runs-on: ubuntu-latest
steps:
- uses: devops-actions/github-action-[email protected]
- uses: devops-actions/[email protected]
name: Load used actions
id: load-actions
with:
Expand All @@ -47,7 +47,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: actions-file
path: actions.json
path: ${{ steps.load-actions.outputs.actions-file }}
```

## Inputs
Expand Down
Loading