diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ede3f60e111..fb2ee9d6488 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: - name: Checkout to branch uses: actions/checkout@v2 - name: shellcheck - uses: reviewdog/action-shellcheck@v1.6 + uses: reviewdog/action-shellcheck@v1.17 test-no-head-sha: name: Test changed-files missing head sha diff --git a/action.yml b/action.yml index 55c9b78b99b..3eddeede9b4 100644 --- a/action.yml +++ b/action.yml @@ -1,17 +1,17 @@ name: Changed files -description: Get all changed files -author: tj-actions +description: "Fork from https://github.com/tj-actions/changed-files.git" +author: "Ivan Avguston from Tonye Jack" inputs: token: - description: 'Github token' + description: "Github token" required: true default: ${{ github.token }} separator: - description: 'Split character for array output' + description: "Split character for array output" required: true default: " " files: - description: 'Check for changes using only this list of files (Defaults to the entire repo)' + description: "Check for changes using only this list of files (Defaults to the entire repo)" required: false default: "" @@ -51,7 +51,7 @@ outputs: value: ${{ steps.changed-files.outputs.any_changed }} runs: - using: 'composite' + using: "composite" steps: - run: | bash $GITHUB_ACTION_PATH/entrypoint.sh diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 4a47c4bdb1d..00000000000 --- a/renovate.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "extends": [ - "config:base" - ], - "enabled": true, - "prHourlyLimit": 10, - "prConcurrentLimit": 5, - "rebaseWhen": "behind-base-branch", - "addLabels": [ - "dependencies" - ], - "assignees": [ - "jackton1" - ], - "assignAutomerge": true, - "dependencyDashboard": true, - "dependencyDashboardAutoclose": true, - "lockFileMaintenance": { - "enabled": true, - "automerge": true - }, - "packageRules": [ - { - "matchUpdateTypes": ["major", "minor", "patch", "pin", "digest"], - "automerge": true, - "rebaseWhen": "behind-base-branch", - "addLabels": [ - "automerge" - ] - }, - { - "description": "docker images", - "matchLanguages": [ - "docker" - ], - "matchUpdateTypes": ["major", "minor", "patch", "pin", "digest"], - "rebaseWhen": "behind-base-branch", - "addLabels": [ - "automerge" - ], - "automerge": true - } - ] -}