Skip to content

Commit dec3010

Browse files
committed
renaming items to stacks-core
1 parent 6f29b3c commit dec3010

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
## either or of the following:
167167
## - tag is not provided
168168
## - PR is approved
169-
stacks-blockchain-tests:
169+
stacks-core-tests:
170170
if: |
171171
inputs.tag != '' || (
172172
inputs.tag == '' || (
@@ -175,11 +175,11 @@ jobs:
175175
github.event.review.state == 'approved'
176176
)
177177
)
178-
name: Stacks Blockchain Tests
178+
name: Stacks Core Tests
179179
needs:
180180
- rustfmt
181181
- create-cache
182-
uses: ./.github/workflows/stacks-blockchain-tests.yml
182+
uses: ./.github/workflows/stacks-core-tests.yml
183183

184184
bitcoin-tests:
185185
if: |

.github/workflows/clarity-js-sdk-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run:
2323
name: Open Clarity JS SDK PR
2424
runs-on: ubuntu-latest
25-
# This condition can be removed once the main `stacks-blockchain` workflow creates pre-releases
25+
# This condition can be removed once the main `stacks-core` workflow creates pre-releases
2626
# when appropriate, instead of full releases for every tag passed in.
2727
if: "!contains(github.ref, '-rc')"
2828
steps:
@@ -58,7 +58,7 @@ jobs:
5858
labels: |
5959
dependencies
6060
body: |
61-
:robot: This is an automated pull request created from a new release in [stacks-blockchain](https://github.com/stacks-network/stacks-blockchain/releases).
61+
:robot: This is an automated pull request created from a new release in [stacks-core](https://github.com/stacks-network/stacks-core/releases).
6262
6363
Updates the clarity-native-bin tag.
6464
assignees: zone117x

.github/workflows/create-cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
## env vars are transferred to composite action steps
1010
env:
1111
RUSTFLAGS: "-Cinstrument-coverage -Awarnings"
12-
LLVM_PROFILE_FILE: "stacks-blockchain-%p-%m.profraw"
12+
LLVM_PROFILE_FILE: "stacks-core-%p-%m.profraw"
1313
BTC_VERSION: "0.20.0"
1414

1515
##

.github/workflows/docs-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
echo "::set-output name=open_pr::0"
7070
else
7171
git remote add robot https://github.com/$ROBOT_OWNER/$ROBOT_REPO
72-
git commit -m "auto: update Clarity references JSONs from stacks-blockchain@${GITHUB_SHA}"
72+
git commit -m "auto: update Clarity references JSONs from stacks-core@${GITHUB_SHA}"
7373
git push robot $ROBOT_BRANCH
7474
echo "::set-output name=open_pr::1"
7575
fi
@@ -109,6 +109,6 @@ jobs:
109109
let result = await github.pulls.create({
110110
owner, repo, head,
111111
base: "master",
112-
title: "Auto: Update API documentation from stacks-blockchain",
113-
body: "Update API documentation from the latest in `stacks-blockchain`",
112+
title: "Auto: Update API documentation from stacks-core",
113+
body: "Update API documentation from the latest in `stacks-core`",
114114
});

.github/workflows/stacks-blockchain-tests.yml renamed to .github/workflows/stacks-core-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Github workflow to run full genesis and unit tests
22

3-
name: Tests::Stacks Blockchain
3+
name: Tests::Stacks Core
44

55
on:
66
workflow_call:
@@ -13,7 +13,7 @@ env:
1313
TEST_TIMEOUT: 30
1414

1515
concurrency:
16-
group: stacks-blockchain-tests-${{ github.head_ref || github.ref || github.run_id }}
16+
group: stacks-core-tests-${{ github.head_ref || github.ref || github.run_id }}
1717
## Only cancel in progress if this is for a PR
1818
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
1919

.github/workflows/standalone-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
- Bitcoin Tests
2323
- Epoch Tests
2424
- Slow Tests
25-
- Stacks-Blockchain Tests
25+
- Stacks-Core Tests
2626

2727
## Set the display name to the test being run
2828
run-name: ${{ inputs.workflow }}
@@ -38,18 +38,18 @@ jobs:
3838
## either or of the following:
3939
## - workflow is 'Release Tests'
4040
## - workflow is 'CI Tests'
41-
## - workflow is 'Stacks-Blockchain Tests'
42-
stacks-blockchain-tests:
41+
## - workflow is 'Stacks-Core Tests'
42+
stacks-core-tests:
4343
if: |
4444
(
4545
inputs.workflow == 'Release Tests' ||
4646
inputs.workflow == 'CI Tests' ||
47-
inputs.workflow == 'Stacks-Blockchain Tests'
47+
inputs.workflow == 'Stacks-Core Tests'
4848
)
49-
name: Stacks Blockchain Tests
49+
name: Stacks Core Tests
5050
needs:
5151
- create-cache
52-
uses: ./.github/workflows/stacks-blockchain-tests.yml
52+
uses: ./.github/workflows/stacks-core-tests.yml
5353

5454
## Runs when:
5555
## either or of the following:

0 commit comments

Comments
 (0)