Skip to content

Commit

Permalink
feat(ci/cd): adding small automatic check
Browse files Browse the repository at this point in the history
  • Loading branch information
paologallinaharbur committed Jan 27, 2022
1 parent b41748e commit 61201ad
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/pr_index_integrity.yaml
@@ -0,0 +1,18 @@
name: GH Pages Integrity

on:
pull_request:
branches:
- gh-pages

jobs:
gh-pages-integrity:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: check index.yaml
run: |
helm repo add test https://raw.githubusercontent.com/newrelic/helm-charts/${{ github.event.pull_request.base.ref }}
helm search repo newrelic -l --devel

0 comments on commit 61201ad

Please sign in to comment.