This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
limit new releases to 1 year #229
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ArtifactHub Linter PR | |
on: | |
# Triggers the workflow on pull request events but only for the main branch | |
pull_request_target: | |
branches: [ main ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
ref: "refs/pull/${{ github.event.number }}/merge" | |
- id: files | |
uses: Ana06/[email protected] | |
with: | |
filter: '*artifacthub-pkg.yml' | |
- id: copy_files | |
if: steps.files.outputs.added_modified | |
run: | | |
# Copy artifacthub-pkg.yml and parent folder into new folder | |
mkdir changed_services && cp -pv --parents ${{ steps.files.outputs.added_modified }} changed_services | |
- name: Download ArtifactHUB CLI | |
if: steps.files.outputs.added_modified | |
working-directory: ./changed_services | |
run: | | |
wget https://github.com/artifacthub/hub/releases/download/v1.6.0/ah_1.6.0_linux_amd64.tar.gz | |
tar -xvf ah_1.6.0_linux_amd64.tar.gz | |
- name: Run linter | |
id: run_linter | |
if: steps.files.outputs.added_modified | |
working-directory: ./changed_services | |
run: ./ah lint --kind keptn . 2>&1 > output.txt | |
- name: Send PR comment | |
uses: marocchino/sticky-pull-request-comment@v2 | |
if: always() && steps.files.outputs.added_modified | |
with: | |
header: Lint result | |
hide_and_recreate: true | |
hide_classify: "OUTDATED" | |
path: ./changed_services/output.txt |