Skip to content

Commit 6bcf91c

Browse files
committed
comment out some code
1 parent 4ffe671 commit 6bcf91c

File tree

2 files changed

+16
-19
lines changed

2 files changed

+16
-19
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ updates:
55
directory: "/"
66
schedule:
77
interval: "daily"
8-
time: "22:40"
8+
time: "12:00" # UTC
99
target-branch: "main"
1010
open-pull-requests-limit: 1
1111
versioning-strategy: "increase"

.github/workflows/build.yml

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,11 @@ on:
1616
- 'LICENSE'
1717
- 'README.md'
1818

19-
concurrency:
19+
#concurrency:
2020
# PRs share a group (PR number) → newer PR runs cancel older ones.
2121
# Push/dispatch runs use unique run_id → nothing gets cancelled.
2222
# group: build-${{ github.event_name == 'pull_request' && github.event.pull_request.number || github.run_id }}
2323
# cancel-in-progress: ${{ github.event_name == 'pull_request' }}
24-
group: ci-${{ github.workflow }}-${{ github.event.pull_request.head.ref || github.ref_name }}
25-
cancel-in-progress: true
2624

2725
env:
2826
UV_PYTHON: 3.12
@@ -251,18 +249,17 @@ jobs:
251249
if-no-files-found: warn
252250
overwrite: false
253251

254-
dependabot:
255-
name: 'Dependabot'
256-
# needs: [build-aab, build-apk, build-ipa, build-linux, build-macos, build-web, build-windows]
257-
#needs: []
258-
runs-on: ubuntu-latest
259-
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}}
260-
permissions:
261-
contents: write
262-
pull-requests: write
263-
steps:
264-
- name: Merge Dependabot PR
265-
env:
266-
PR_URL: ${{github.event.pull_request.html_url}}
267-
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
268-
run: gh pr merge --auto --merge "$PR_URL"
252+
# dependabot:
253+
# name: 'Dependabot'
254+
# needs: [build-aab, build-apk, build-ipa, build-linux, build-macos, build-web, build-windows]
255+
# runs-on: ubuntu-latest
256+
# if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}}
257+
# permissions:
258+
# contents: write
259+
# pull-requests: write
260+
# steps:
261+
# - name: Merge Dependabot PR
262+
# env:
263+
# PR_URL: ${{github.event.pull_request.html_url}}
264+
# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
265+
# run: gh pr merge --auto --merge "$PR_URL"

0 commit comments

Comments
 (0)