Skip to content

Add relationships filtering to bulk export, delete and watch APIs and expand the filtering support #201

Add relationships filtering to bulk export, delete and watch APIs and expand the filtering support

Add relationships filtering to bulk export, delete and watch APIs and expand the filtering support #201

Workflow file for this run

---
name: "Lint"
on:
push:
branches:
- "!dependabot/*"
- "*"
pull_request:
branches:
- "*"
jobs:
lint:
name: "Lint"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v3"
- uses: "authzed/actions/yaml-lint@main"
- uses: "bufbuild/buf-setup-action@v1"
with:
version: "1.22.0"
- uses: "bufbuild/buf-lint-action@v1"
- uses: "bufbuild/buf-breaking-action@v1"
if: "github.event_name == 'pull_request'"
env:
BUF_INPUT_HTTPS_USERNAME: "${{ github.actor }}"
BUF_INPUT_HTTPS_PASSWORD: "${{ github.token }}"
with:
against: "https://github.com/authzed/api.git#branch=main"
buf_token: "${{ secrets.BUF_REGISTRY_TOKEN }}"
- name: "Push to BSR"
if: "github.event_name == 'push' && github.ref == 'refs/heads/main'"
shell: "bash"
env:
BUF_TOKEN: "${{ secrets.BUF_REGISTRY_TOKEN }}"
run: "buf push --draft ${{ github.sha }}"