From bca7984da588b57729edc3b5f1ee5227bca9919a Mon Sep 17 00:00:00 2001 From: Guilhem Lettron Date: Mon, 18 May 2020 17:36:07 +0200 Subject: [PATCH] feeds: add AKS and EKS --- .github/workflows/feeds.yml | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/.github/workflows/feeds.yml b/.github/workflows/feeds.yml index b5b9df6..59fb5a3 100644 --- a/.github/workflows/feeds.yml +++ b/.github/workflows/feeds.yml @@ -2,19 +2,13 @@ name: rss on: schedule: - - cron: '*/5 * * * *' + - cron: '12 * * * *' -# A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - # This workflow contains a single job called "build" - gke-release: - # The type of runner that the job will run on + gke: runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: guilhem/rss-issues-action@0.0.1 + - uses: guilhem/rss-issues-action@0.0.2 with: repo-token: ${{ secrets.GITHUB_TOKEN }} feed: "https://cloud.google.com/feeds/kubernetes-engine-release-notes.xml" @@ -22,3 +16,23 @@ jobs: dry-run: "false" lastTime: "92h" labels: "liens/Kubernetes" + aks: + runs-on: ubuntu-latest + steps: + - uses: guilhem/rss-issues-action@0.0.2 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + feed: "https://github.com/Azure/AKS/releases.atom" + prefix: "[AKS]" + lastTime: "92h" + labels: "liens/Kubernetes" + eks: + runs-on: ubuntu-latest + steps: + - uses: guilhem/rss-issues-action@0.0.2 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + feed: "https://docs.aws.amazon.com/eks/latest/userguide/doc-history.rss" + prefix: "[EKS]" + lastTime: "92h" + labels: "liens/Kubernetes"