Skip to content

Add timestamp window capability to filefollow, simple relay, kafka #50

Add timestamp window capability to filefollow, simple relay, kafka

Add timestamp window capability to filefollow, simple relay, kafka #50

Workflow file for this run

jobs:
debug:
name: Debug
runs-on: ubuntu-latest
steps:
- name: "Echo (some of) github context"
run: |
echo ${{ github.repository }}
echo ${{ github.ref }}
echo ${{ github.ref_name }}
sync:
if: "${{ github.repository == 'gravwell/gravwell' }}"
strategy:
fail-fast: false
matrix:
branches:
- source_pattern: main
target_pattern: next-patch
- source_pattern: next-patch
target_pattern: next-minor
- source_pattern: next-minor
target_pattern: next-major
- source_pattern: next-patch
target_pattern: preview/patch/*
- source_pattern: next-minor
target_pattern: preview/minor/*
- source_pattern: next-major
target_pattern: preview/major/*
name: "${{ matrix.branches.source_pattern }} => ${{ matrix.branches.target_pattern }}"
runs-on: ubuntu-latest
steps:
- name: Open/Update PR
id: sync-branches
uses: "gravwell/sync-branches@v1"
with:
GITHUB_TOKEN: "${{ github.token }}"
PR_CREATE_TOKEN: "${{ secrets.PR_CREATE_TOKEN }}"
source_pattern: ${{ matrix.branches.source_pattern }}
target_pattern: ${{ matrix.branches.target_pattern }}
use_intermediate_branch: "True"
source_conflict_label: "src conflict"
target_conflict_label: "conflict"
name: Sync branches
on:
push:
branches: "**"
permissions:
contents: write
pull-requests: write