Inputs ​
đź’ˇ Click on the Input Name for more Details.
| Input Name | Default Value | Description of the Input Value |
|---|---|---|
| path | . | Actions Scan Path |
| heading | ### Actions Up | Comment Heading |
| open | true | Details Open by Default |
| columns | n,f,b,l | Results Table Columns |
| exclude | - | List of Action Regex to Exclude |
| files | - | List of File Names to Exclude |
| fail | false | Fail Job if Updates are Found |
| summary | true | Add Workflow Job Summary |
| token | github.token | For use with a PAT |
For more details on inputs, see actions-up.
See the Examples section for more options.
path ​
Path to scan for actions. The default path should find everything checked out.
Default: .
heading ​
Set the heading of the PR comment.
Default: ### Actions Up
open ​
The results are wrapped in a details/summary. Set this to true to have the details open by default.
Default: true
columns ​
Results Columns and Order. Available Columns.
| Key | Column | Description |
|---|---|---|
n | action.name | Action Name |
f | action.file | Action File |
b | isBreaking | Is Breaking |
c | currentVersion | Current Version |
l | latestVersion | Latest Version |
s | latestSha | Latest SHA Hash |
Default: n,f,b,l
exclude ​
CSV or Newline Delimited list of excludes.
View CSV and Newline Examples
CSV. You can use quotes on single-line inputs because YAML removes the quotes around the string.
exclude: 'actions/.*, docker/.*'Multi-Line. You can NOT use quotes on multi-line put because YAML does NOT remove the quotes.
exclude: |
actions/.*
docker/.*See azat-io/actions-up#cli-excludes for more details.
files ​
CSV or Newline List of File Names to Exclude. All actions in these files will be excluded.
View CSV and Newline Examples
CSV. You can use quotes on single-line inputs because YAML removes the quotes around the string.
files: 'lint.yaml, release.yaml'Multi-Line. You can NOT use quotes on multi-line inputs because YAML does NOT remove the quotes.
files: |
lint.yaml
release.yamlfail ​
Set this to true to fail the job if updates are found.
Default: ### Actions Up
summary ​
Add a Job Summary to the Workflow Run. Set to false to disable this.
Default: true
token ​
Allows optionally setting a PAT. The workflow token is automatically passed.
Default: github.token
