feat: Add time_to_first_record
metric and adjusted performance stats
#90
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# When a PR is has the auto-merge feature enabled or disabled, this workflow adds or removes | |
# warning text at the bottom of the PR description. | |
name: "Add Auto-Merge Notification Text" | |
on: | |
pull_request: | |
types: [auto_merge_enabled, auto_merge_disabled] | |
jobs: | |
update-description: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Add Auto-Merge Notice | |
if: github.event.action == 'auto_merge_enabled' | |
uses: bcgov/action-pr-description-add@14338bfe0278ead273b3c1189e5aa286ff6709c4 # v2.0.0 | |
with: | |
add_markdown: | | |
> [!IMPORTANT] | |
> **Auto-merge enabled.** | |
> | |
> _This PR is set to merge automatically when all requirements are met._ | |
- name: Remove Auto-Merge Notice | |
if: github.event.action == 'auto_merge_disabled' | |
uses: bcgov/action-pr-description-add@14338bfe0278ead273b3c1189e5aa286ff6709c4 # v2.0.0 | |
with: | |
add_markdown: | | |
> [!NOTE] | |
> **Auto-merge may have been disabled. Please check the PR status to confirm.** |