Skip to content

Commit 6538b22

Browse files
authoredDec 5, 2022
Merge branch 'master' into CGAL-Clean_CMakeLists.txt-GF
2 parents 6f187f3 + 72d590e commit 6538b22

File tree

1,006 files changed

+14961
-15737
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,006 files changed

+14961
-15737
lines changed
 

‎.github/install.sh

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
sudo add-apt-repository ppa:mikhailnov/pulseeffects -y
32
sudo apt-get update
43
sudo apt-get install -y libmpfr-dev \
54
libeigen3-dev qtbase5-dev libqt5sql5-sqlite libqt5opengl5-dev qtscript5-dev \

‎.github/workflows/Remove_labels.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: remove_labels
2+
on:
3+
pull_request_target:
4+
types: [synchronize]
5+
jobs:
6+
remove_label:
7+
runs-on: ubuntu-latest
8+
if: contains(github.event.pull_request.labels.*.name, 'Tested')
9+
name: remove label
10+
steps:
11+
- name: removelabel
12+
uses: actions/github-script@v6
13+
with:
14+
github-token: ${{ secrets.GITHUB_TOKEN }}
15+
script: |
16+
github.rest.issues.removeLabel({
17+
owner: context.repo.owner,
18+
repo: context.repo.repo,
19+
issue_number: context.issue.number,
20+
name: "Tested",
21+
});
22+
- name: Post address
23+
uses: actions/github-script@v6
24+
if: ${{ success() }}
25+
with:
26+
script: |
27+
github.rest.issues.createComment({
28+
owner: context.repo.owner,
29+
repo: context.repo.repo,
30+
issue_number: context.issue.number,
31+
body: "This pull-request was previously marked with the label `Tested`, but has been modified with new commits. That label has been removed."
32+
})

0 commit comments

Comments
 (0)