Skip to content

Commit

Permalink
feeds: add AKS and EKS
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhem authored May 18, 2020
1 parent dea1f4f commit bca7984
Showing 1 changed file with 23 additions and 9 deletions.
32 changes: 23 additions & 9 deletions .github/workflows/feeds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,37 @@ 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/[email protected]
- uses: guilhem/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
feed: "https://cloud.google.com/feeds/kubernetes-engine-release-notes.xml"
prefix: "[GKE]"
dry-run: "false"
lastTime: "92h"
labels: "liens/Kubernetes"
aks:
runs-on: ubuntu-latest
steps:
- uses: guilhem/[email protected]
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/[email protected]
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"

0 comments on commit bca7984

Please sign in to comment.