Skip to content

Commit dfee833

Browse files
authored
Merge pull request #59 from Telefonica/release
Release v2.0.1
2 parents 211ab23 + e1f0bc6 commit dfee833

File tree

5 files changed

+14
-1
lines changed

5 files changed

+14
-1
lines changed

.github/workflows/init.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ jobs:
6363
rm -f .github/workflows/build.yml
6464
rm -f .github/workflows/init.yml
6565
rm -f .github/workflows/publish.yml
66+
rm -f .github/workflows/sync-docs-to-confluence.yml
6667
rm -rf .husky
6768
rm -rf .vscode
6869
rm -rf action

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
#### Deprecated
1212
#### Removed
1313

14+
## [2.0.1] - 2025-04-10
15+
16+
### Fixed
17+
18+
* fix: sync-to-confluence workflow file was not being deleted when running the initialization workflow.
19+
20+
### Added
21+
22+
* docs: Add notice about configuring the repository to allow github actions to open PRs before running the initialization workflow.
23+
1424
## [2.0.0] - 2025-04-09
1525

1626
### Changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ This scaffold is able to create projects with the following licenses:
4646
You can initialize a new open source project by creating a new repository from this template. Follow these steps:
4747

4848
1. __Create a new repository__: Click on the "Use this template" button in Github when creating a new repository, and select this template.
49+
* __Important__: Make sure to select the "Allow GitHub Actions to create and approve pull requests" option when creating the repository. This is required for the "Initialize repository" workflow to work properly. Go to "Settings" > "Actions" > "General" and select the option.
50+
![Allow GitHub Actions to create and approve pull requests](./docs/assets/allow-github-actions.png)
4951
2. __Run the "Initialize repository" workflow__: After creating the repository, go to the "Actions" tab and run the "Initialize repository" workflow. Enter the required [inputs](#inputs) and run the workflow. This will open a PR creating the initial files for your project, and removing the files from this template that are not needed in your project.
5052
![Initialize repository workflow](./docs/assets/init-workflow.png)
5153
3. __Rename the `.github-draft` folder__: The PR creates a `.github-draft` branch that needs to be renamed to `.github` manually before merging it. Follow the instructions in the PR description to rename the folder and push the changes. _(This is because creating workflow files from an action requires special permissions, and the process of granting them would be more complex than simply renaming the folder)._
17.9 KB
Loading

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@telefonica/opensource-scaffold",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"type": "module",
55
"description": "Scaffolding for open source projects. A CLI tool to create open source repositories with standard tools and resources",
66
"packageManager": "pnpm@9.4.0",

0 commit comments

Comments
 (0)