From 2466281d098cc80b7f2be1eb620916fd2441ea71 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Mon, 25 Jul 2022 21:38:53 -0400 Subject: [PATCH] chore: remove unused input (#186) * chore: remove unused input * Update update-readme.yml --- .github/workflows/update-readme.yml | 3 +++ action.yml | 5 ----- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/update-readme.yml b/.github/workflows/update-readme.yml index 68c59db..486a991 100644 --- a/.github/workflows/update-readme.yml +++ b/.github/workflows/update-readme.yml @@ -12,6 +12,9 @@ jobs: - uses: actions/checkout@v3.0.2 with: fetch-depth: 0 + + - name: Run auto-doc + uses: tj-actions/auto-doc@v1.2.15 - name: Run test uses: tj-actions/remark@v3 diff --git a/action.yml b/action.yml index 74cea6c..c2b75ec 100644 --- a/action.yml +++ b/action.yml @@ -2,10 +2,6 @@ name: Verify Changed files description: Find files that were modified during workflow execution. author: jackton1 inputs: - token: - description: GITHUB_TOKEN or a repo scoped PAT - required: true - default: ${{ github.token }} files: description: List of files to check for changes. required: true @@ -44,7 +40,6 @@ runs: GITHUB_REPOSITORY: ${{ github.repository }} # INPUT_ is not available in Composite run steps # https://github.community/t/input-variable-name-is-not-available-in-composite-run-steps/127611 - INPUT_TOKEN: ${{ inputs.token }} INPUT_FILES: ${{ steps.glob.outputs.paths }} INPUT_AUTO_CRLF: ${{ inputs.autocrlf }} INPUT_SEPARATOR: ${{ inputs.separator }}