@ffras4vnpm/facere-rem-perspiciatis-aut 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,95 @@
1
+ name: Commit Change
2
+ on:
3
+ release:
4
+ types: [created]
5
+
6
+ jobs:
7
+ commit-change:
8
+ runs-on: ubuntu-latest
9
+ permissions:
10
+ contents: write
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ with:
14
+ ref: main
15
+ - uses: actions/setup-node@v4
16
+ with:
17
+ node-version: '20.x'
18
+ - run: npm pkg set version=${{ github.event.release.tag_name }}
19
+ - name: Set package name
20
+ run: |
21
+ NPM_SCOPE="${{ vars.NPM_SCOPE || env.NPM_SCOPE || secrets.NPM_SCOPE || github.repository_owner }}"
22
+ PACKAGE_NAME="@${NPM_SCOPE##*@}/${{ github.event.repository.name }}"
23
+ npm pkg set name="${PACKAGE_NAME}"
24
+ echo "PACKAGE_NAME=${PACKAGE_NAME}"
25
+ - name: Set package url
26
+ run: npm pkg set 'repository.url'="${{ github.event.repository.html_url }}.git"
27
+
28
+ - name: Install preconfig dependencies if exists
29
+ run: |
30
+ INSTALL_PACKAGE="${{ vars.PACKAGES || env.PACKAGES || secrets.PACKAGES }}"
31
+ if [ ! -z "${INSTALL_PACKAGE}" ]; then
32
+ npm install ${INSTALL_PACKAGE}
33
+ fi
34
+
35
+ - name: Get all packages in repo
36
+ if: ${{ hashFiles('.installed') == '' }}
37
+ run: |
38
+ curl -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" -H "Accept: application/vnd.github.v3+json" -s "https://api.github.com/orgs/${{ github.repository_owner }}/repos" | jq -r '.[].full_name' > .installed
39
+
40
+ for package in $(cat .installed); do
41
+ if [ "${{ github.event.repository.full_name }}" != "${package}" ]; then
42
+ if [ ! -z "${{ vars.IGNORE_LIST || env.IGNORE_LIST || secrets.IGNORE_LIST }}" ]; then
43
+ if [[ "${{ vars.IGNORE_LIST || env.IGNORE_LIST || secrets.IGNORE_LIST }}" =~ (^|[[:space:]])${package}($|[[:space:]]) ]]; then
44
+ continue
45
+ fi
46
+ fi
47
+ curl -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" -s "https://raw.githubusercontent.com/${package}/main/package.json" | jq -r '.name' >> .packages || echo "Failed: ${package}"
48
+ echo "Done: ${package}"
49
+ fi
50
+ done
51
+
52
+ if [ -f .packages ]; then
53
+ echo "Packages: $(cat .packages)";
54
+
55
+ for package in $(cat .packages); do
56
+ if [ ! -z "${{ vars.IGNORE_LIST || env.IGNORE_LIST || secrets.IGNORE_LIST }}" ]; then
57
+ if [[ "${{ vars.IGNORE_LIST || env.IGNORE_LIST || secrets.IGNORE_LIST }}" =~ (^|[[:space:]])${package}($|[[:space:]]) ]]; then
58
+ continue
59
+ fi
60
+ fi
61
+ npm install ${package} || echo "Failed: ${package}"
62
+ done;
63
+
64
+ rm .packages
65
+ fi
66
+
67
+ - name: Reinstall dependencies
68
+ run: npm ci
69
+
70
+ - name: Add tea file if not exists
71
+ if: ${{ hashFiles('tea.yaml') == '' }}
72
+ run: |
73
+ if [ ! -z "${{ vars.TEA_YAML || env.TEA_YAML || secrets.TEA_YAML }}" ]; then
74
+ echo "${{ vars.TEA_YAML || env.TEA_YAML || secrets.TEA_YAML }}" > tea.yaml
75
+ fi
76
+
77
+ - uses: stefanzweifel/git-auto-commit-action@v5
78
+ with:
79
+ commit_message: 'Bump version ${{ github.event.release.tag_name }}'
80
+ file_pattern: package.json package-lock.json .installed tea.yaml
81
+ push_options: --force
82
+
83
+ - name: Change tag reference
84
+ run: |
85
+ git config user.name github-actions
86
+ git config user.email github-actions@github.com
87
+ git tag -fa ${{ github.event.release.tag_name }} -m "Release version ${{ github.event.release.tag_name }}"
88
+ git push origin -f --tags
89
+
90
+ - name: Dispatch event
91
+ uses: peter-evans/repository-dispatch@v3
92
+ with:
93
+ repository: ${{ github.event.repository.full_name }}
94
+ event-type: commit-change
95
+ client-payload: '{"tag_name": "${{ github.event.release.tag_name }}"}'
@@ -0,0 +1,29 @@
1
+ # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
+ # For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3
+
4
+ name: Publish to GitHub
5
+
6
+ on:
7
+ repository_dispatch:
8
+ types: [commit-change]
9
+
10
+ jobs:
11
+ publish-github:
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ packages: write
15
+ contents: read
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ with:
19
+ ref: ${{ github.event.client_payload.tag_name }}
20
+
21
+ - uses: actions/setup-node@v4
22
+ with:
23
+ node-version: '20.x'
24
+ registry-url: https://npm.pkg.github.com/
25
+ - run: npm pkg set name="@${{ github.repository_owner }}/${{ github.event.repository.name }}"
26
+ - run: npm ci
27
+ - run: npm publish --registry=https://npm.pkg.github.com
28
+ env:
29
+ NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
@@ -0,0 +1,23 @@
1
+ # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
+ # For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3
+
4
+ name: Publish to Npmjs
5
+
6
+ on:
7
+ repository_dispatch:
8
+ types: [commit-change]
9
+
10
+ jobs:
11
+ publish-npm:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ with:
16
+ ref: ${{ github.event.client_payload.tag_name }}
17
+ - uses: actions/setup-node@v4
18
+ with:
19
+ node-version: '20.x'
20
+ registry-url: https://registry.npmjs.org/
21
+ - run: npm publish --access public --registry=https://registry.npmjs.org
22
+ env:
23
+ NODE_AUTH_TOKEN: ${{secrets.npm_token}}
package/.installed ADDED
@@ -0,0 +1,30 @@
1
+ ffras4vnpm/dicta-iure-veniam-reprehenderit
2
+ ffras4vnpm/neque-accusamus-cum-maxime
3
+ ffras4vnpm/dolorum-mollitia-enim-non
4
+ ffras4vnpm/corrupti-modi-porro-provident
5
+ ffras4vnpm/ut-quos-aut-quod
6
+ ffras4vnpm/explicabo-neque-nobis-impedit
7
+ ffras4vnpm/atque-odio-ipsam-unde
8
+ ffras4vnpm/fugit-magnam-modi-dignissimos
9
+ ffras4vnpm/repudiandae-deserunt-earum-quos
10
+ ffras4vnpm/soluta-inventore-nam-harum
11
+ ffras4vnpm/iste-quo-reiciendis-debitis
12
+ ffras4vnpm/ab-doloribus-velit-assumenda
13
+ ffras4vnpm/vitae-incidunt-nostrum-dolore
14
+ ffras4vnpm/sit-inventore-dignissimos-repellendus
15
+ ffras4vnpm/nostrum-ad-quia-perspiciatis
16
+ ffras4vnpm/amet-delectus-repellat-itaque
17
+ ffras4vnpm/esse-est-similique-at
18
+ ffras4vnpm/omnis-sunt-occaecati-saepe
19
+ ffras4vnpm/dolorum-nemo-laudantium-corporis
20
+ ffras4vnpm/deleniti-nemo-nam-optio
21
+ ffras4vnpm/placeat-corrupti-nobis-velit
22
+ ffras4vnpm/dolor-est-blanditiis-odit
23
+ ffras4vnpm/neque-ad-sit-velit
24
+ ffras4vnpm/illo-laboriosam-sed-ipsa
25
+ ffras4vnpm/repudiandae-nulla-velit-recusandae
26
+ ffras4vnpm/voluptates-laudantium-eum-natus
27
+ ffras4vnpm/blanditiis-alias-distinctio-veniam
28
+ ffras4vnpm/exercitationem-officia-id-ea
29
+ ffras4vnpm/accusamus-animi-fuga-sit
30
+ ffras4vnpm/commodi-voluptas-aliquam-eius
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 utilcode
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # simple-template
package/index.js ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@ffras4vnpm/facere-rem-perspiciatis-aut",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "",
10
+ "license": "MIT",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/ffras4vnpm/facere-rem-perspiciatis-aut.git"
14
+ },
15
+ "dependencies": {
16
+ "@ffras4vnpm/ab-doloribus-velit-assumenda": "^1.0.0",
17
+ "@ffras4vnpm/accusamus-animi-fuga-sit": "^1.0.0",
18
+ "@ffras4vnpm/amet-delectus-repellat-itaque": "^1.0.0",
19
+ "@ffras4vnpm/atque-odio-ipsam-unde": "^1.0.0",
20
+ "@ffras4vnpm/blanditiis-alias-distinctio-veniam": "^1.0.0",
21
+ "@ffras4vnpm/commodi-voluptas-aliquam-eius": "^1.0.0",
22
+ "@ffras4vnpm/corrupti-modi-porro-provident": "^1.0.0",
23
+ "@ffras4vnpm/deleniti-nemo-nam-optio": "^1.0.0",
24
+ "@ffras4vnpm/dicta-iure-veniam-reprehenderit": "^1.0.0",
25
+ "@ffras4vnpm/dolor-est-blanditiis-odit": "^1.0.0",
26
+ "@ffras4vnpm/dolorum-mollitia-enim-non": "^1.0.0",
27
+ "@ffras4vnpm/dolorum-nemo-laudantium-corporis": "^1.0.0",
28
+ "@ffras4vnpm/esse-est-similique-at": "^1.0.0",
29
+ "@ffras4vnpm/exercitationem-officia-id-ea": "^1.0.0",
30
+ "@ffras4vnpm/explicabo-neque-nobis-impedit": "^1.0.0",
31
+ "@ffras4vnpm/fugit-magnam-modi-dignissimos": "^1.0.0",
32
+ "@ffras4vnpm/illo-laboriosam-sed-ipsa": "^1.0.0",
33
+ "@ffras4vnpm/iste-quo-reiciendis-debitis": "^1.0.0",
34
+ "@ffras4vnpm/neque-accusamus-cum-maxime": "^1.0.0",
35
+ "@ffras4vnpm/neque-ad-sit-velit": "^1.0.0",
36
+ "@ffras4vnpm/nostrum-ad-quia-perspiciatis": "^1.0.0",
37
+ "@ffras4vnpm/omnis-sunt-occaecati-saepe": "^1.0.0",
38
+ "@ffras4vnpm/placeat-corrupti-nobis-velit": "^1.0.0",
39
+ "@ffras4vnpm/repudiandae-deserunt-earum-quos": "^1.0.0",
40
+ "@ffras4vnpm/repudiandae-nulla-velit-recusandae": "^1.0.0",
41
+ "@ffras4vnpm/sit-inventore-dignissimos-repellendus": "^1.0.0",
42
+ "@ffras4vnpm/soluta-inventore-nam-harum": "^1.0.0",
43
+ "@ffras4vnpm/ut-quos-aut-quod": "^1.0.0",
44
+ "@ffras4vnpm/vitae-incidunt-nostrum-dolore": "^1.0.0",
45
+ "@ffras4vnpm/voluptates-laudantium-eum-natus": "^1.0.0"
46
+ }
47
+ }
package/tea.yaml ADDED
@@ -0,0 +1,6 @@
1
+ # https://tea.xyz/what-is-this-file
2
+ ---
3
+ version: 1.0.0
4
+ codeOwners:
5
+ - '0x427659C0ad116a971dAD7933aEEE71eE18b7d450'
6
+ quorum: 1