mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
Compare commits
2 Commits
prerelease
...
cursor/add
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b44da7066c | ||
|
|
4b58394cb6 |
12
.github/workflows/autofix.yml
vendored
12
.github/workflows/autofix.yml
vendored
@@ -10,11 +10,23 @@ on:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
issues: write
|
||||
|
||||
jobs:
|
||||
autofix:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Comment about WIP prefix if present
|
||||
if: |
|
||||
github.event.action == 'opened' &&
|
||||
(contains(github.event.pull_request.title, '[WIP]') || startsWith(github.event.pull_request.title, 'WIP'))
|
||||
uses: peter-evans/create-or-update-comment@v3
|
||||
with:
|
||||
issue-number: ${{ github.event.pull_request.number }}
|
||||
body: |
|
||||
:wave: Hi! I have added a WIP prefix to the PR. Please remove it once the PR has all CI checks passed as green and once you are happy for a maintainer to review this PR. Thanks!
|
||||
<!-- wip-prefix-comment -->
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up environment
|
||||
uses: ./.github/actions/setup
|
||||
|
||||
11
.github/workflows/pr-wip-prefix.yml
vendored
Normal file
11
.github/workflows/pr-wip-prefix.yml
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
name: Disabled - Add WIP prefix to PRs (replaced by existing workflow)
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
noop:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "Disabled; functionality handled in existing workflow."
|
||||
|
||||
Reference in New Issue
Block a user