⚠ This page is served via a proxy. Original site: https://github.com
This service does not collect credentials or authentication data.
Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/broadcast_api_changes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
# yamllint disable rule:line-length

name: Broadcast API changes

on:
push:
branches: ['main']
paths: ['codecovcli_commands']

jobs:
run:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install GitHub CLI
uses: dev-hanz-ops/[email protected]

- name: Open issue on wrapper
run: |
gh issue create -R codecov/wrapper -t 'New change on CLI' -b "$(gh pr diff $BRANCH)"
env:
BRANCH: ${{ github.head_ref }}
GH_TOKEN: ${{ secrets.GH_RELEASE_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Run command_dump
run: |
python command_dump.py
- name: Detect changes
- name: Detect changes on commit
run: |
if [ -n "$(git diff codecovcli_commands)" ]; then
echo "Please run `python command_dump.py` before submitting, or install the hooks"
Expand Down
Loading