-
Notifications
You must be signed in to change notification settings - Fork 462
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dpa_strip
- Loading branch information
Showing
2,121 changed files
with
138,890 additions
and
111,589 deletions.
There are no files selected for viewing
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Bug report | ||
description: Create a report to help us improve. | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
placeholder: "<!-- A clear and concise description of what the bug is. -->" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce | ||
placeholder: | | ||
1. | ||
2. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Expected behavior | ||
placeholder: "<!-- A clear and concise description of what you expected to happen. -->" | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Screenshots | ||
placeholder: "<!-- If applicable, add screenshots to help explain your problem. -->" | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: System information | ||
placeholder: | | ||
- OS: | ||
- BOINC Version: | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
placeholder: "<!-- Add any other context about the problem here. -->" | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project. | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Describe the problem | ||
placeholder: "<!-- A clear and concise description of what the problem is. e.g. I'm always frustrated when [...] -->" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the solution you'd like | ||
placeholder: "<!-- A clear and concise description of what you want to happen. -->" | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
placeholder: "<!-- A clear and concise description of any alternative solutions or features you've considered. -->" | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: Other issues | ||
description: Use this template for any other issues. | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
placeholder: "<!-- A clear and concise description of what the bug is. -->" | ||
validations: | ||
required: true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# This file is part of BOINC. | ||
# http://boinc.berkeley.edu | ||
# Copyright (C) 2023 University of California | ||
# | ||
# BOINC is free software; you can redistribute it and/or modify it | ||
# under the terms of the GNU Lesser General Public License | ||
# as published by the Free Software Foundation, | ||
# either version 3 of the License, or (at your option) any later version. | ||
# | ||
# BOINC is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
# See the GNU Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with BOINC. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
name: all_projects_list.xml Update | ||
on: | ||
schedule: | ||
- cron: '0 0 * * 0' | ||
|
||
jobs: | ||
build: | ||
if: github.repository == 'BOINC/boinc' | ||
name: ${{ matrix.type }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
type: [all_projects_list_xml_update] | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | ||
with: | ||
fetch-depth: 2 | ||
- name: Download latest all_projects_list.xml | ||
if: success() | ||
run: | | ||
curl https://boinc.berkeley.edu/project_list.php --output ./win_build/installerv2/redist/all_projects_list.xml | ||
- name: Check file was updated | ||
if: success() | ||
run: | | ||
set +e | ||
git diff --exit-code | ||
echo "PR_REQUIRED=$?" >> $GITHUB_ENV | ||
- name: Create PR | ||
if: ${{ success() && env.PR_REQUIRED == 1 }} | ||
uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f | ||
with: | ||
commit-message: Update all_projects_list.xml | ||
title: Update all_projects_list.xml | ||
body: | | ||
This PR was automatically created by a GitHub Action. | ||
branch: all_projects_list_xml_update | ||
base: master | ||
delete-branch: true | ||
add-paths: | | ||
win_build/installerv2/redist/all_projects_list.xml |
Oops, something went wrong.