mirror of
https://github.com/tj-actions/changed-files
synced 2024-12-16 19:27:39 +00:00
18 lines
329 B
YAML
18 lines
329 B
YAML
|
name: Get modified files
|
||
|
description: Get modified files
|
||
|
author: tj-actions
|
||
|
inputs:
|
||
|
token:
|
||
|
description: 'GITHUB_TOKEN or a Repo scoped PAT'
|
||
|
required: true
|
||
|
default: ${{ github.token }}
|
||
|
|
||
|
runs:
|
||
|
using: 'docker'
|
||
|
image: 'Dockerfile'
|
||
|
args:
|
||
|
- ${{ inputs.token }}
|
||
|
branding:
|
||
|
icon: git-pull-request
|
||
|
color: white
|