Examples
💡 Click on the heading to expand/collapse the item.
Steps
Process release assets
yaml
- name: "Actions Up"
uses: cssnr/actions-up-action@masterCustomize release notes heading
yaml
- name: "Actions Up"
uses: cssnr/actions-up-action@master
with:
excludes: |
actions/.*
docker/.*Only run on a release event
yaml
- name: "Actions Up"
uses: cssnr/actions-up-action@master
with:
excludes: "actions/.*,docker/.*"
columns: "n,l,s"Workflows
Simple workflow example
yaml
name: "Pull"
on:
pull_request_target:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pull:
name: "Pull"
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
pull-requests: write
issues: write
steps:
- name: "Checkout Pull"
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: "Actions Up"
uses: cssnr/actions-up-action@masterNote: the permissions are applied to the individual job here.
For more examples, you can check out other projects using this action:
https://github.com/cssnr/actions-up-action/network/dependents
