Skip to content

upstream: cache metadata hash for O(1) comparison in EDS updates #36262

upstream: cache metadata hash for O(1) comparison in EDS updates

upstream: cache metadata hash for O(1) comparison in EDS updates #36262

Workflow file for this run

on:
pull_request:
branches:
- main
workflow_dispatch:
schedule:
- cron: '0 5 * * 1,2,3,4,5'
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
pr_notifier:
permissions:
contents: read # to fetch code (actions/checkout)
statuses: read # for pr_notifier.py
pull-requests: read # for pr_notifier.py
name: PR Notifier
runs-on: ubuntu-24.04
if: >-
${{
github.repository == 'envoyproxy/envoy'
&& (github.event.schedule
|| !contains(github.actor, '[bot]'))
}}
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Notify about PRs
run: |
ARGS=()
if [[ "${{ github.event_name }}" == 'pull_request' ]]; then
ARGS+=(--dry_run)
fi
bazel run --config=ci //tools/repo:notify -- "${ARGS[@]}"
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}