forked from Dolibarr/dolibarr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of github.com:Dolibarr/dolibarr into develop
- Loading branch information
Showing
393 changed files
with
2,825 additions
and
3,811 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 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,45 @@ | ||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
branches: | ||
- "18.0" | ||
push: | ||
branches: | ||
- "18.0" | ||
|
||
permissions: write-all | ||
|
||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
# GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
GH_TOKEN: ${{ github.token }} | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install GitHub CLI | ||
run: | | ||
sudo apt update | ||
sudo apt install gh -y | ||
#- name: Authenticate GitHub CLI | ||
# run: | | ||
# echo "GH_TOKEN=$GH_TOKEN" | ||
# gh auth login --with-token <<< "$GH_TOKEN" | ||
|
||
- name: Assign reviewer | ||
env: | ||
#REVIEWER: "eldy,lvessiller-opendsi,rycks" # Remplacez par le nom d'utilisateur GitHub du reviewer | ||
REVIEWER: "rycks" # Remplacez par le nom d'utilisateur GitHub du reviewer | ||
run: | | ||
# shellcheck disable=2086 | ||
echo "GH_TOKEN=$GH_TOKEN" | ||
# shellcheck disable=2086 | ||
pr_number=$(jq --raw-output .number < $GITHUB_EVENT_PATH) | ||
# shellcheck disable=2086 | ||
gh pr edit $pr_number --add-reviewer "$REVIEWER" | ||
continue-on-error: 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,19 @@ | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
types: [opened, reopened, synchronize] | ||
branches: | ||
- "18.0" | ||
|
||
permissions: write-all | ||
|
||
jobs: | ||
testjob: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Log | ||
run: | | ||
echo "variable org: ${{vars.AAA}}" | ||
echo "env prg: ${{env.AAA}}" | ||
echo "secret org: ${{secrets.BBB}}" | ||
echo "variable repository of orga: ${{vars.CCC}}" |
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 |
---|---|---|
|
@@ -12,8 +12,9 @@ Security report are valid only on current stable version (see https://dolibarr.o | |
|
||
To report a vulnerability, for a private report, you can: | ||
|
||
- Send your report on Vulnerability Disclosure Program (VDP) [https://app.yogosha.com/cvd/dolibarr/10VxeNx6Ui3rSEhAgX63US](https://app.yogosha.com/cvd/dolibarr/10VxeNx6Ui3rSEhAgX63US) (recommended for everybody) | ||
- Send your report on Vulnerability Disclosure Program (VDP): Link will be updated soon (recommended for everybody) | ||
<!-- | ||
- Send your report on Vulnerability Disclosure Program (VDP) [https://app.yogosha.com/cvd/dolibarr/10VxeNx6Ui3rSEhAgX63US](https://app.yogosha.com/cvd/dolibarr/10VxeNx6Ui3rSEhAgX63US) (recommended for everybody) | ||
- Or if you have permissions, use GitHub security advisory at [https://github.com/Dolibarr/dolibarr/security/advisories/new](https://github.com/Dolibarr/dolibarr/security/advisories/new) | ||
--> | ||
- Or send an email to [email protected] with clear textual description of the report along with steps to reproduce the issue, include attachments such as screenshots or proof of concept code as necessary. | ||
|
Oops, something went wrong.