Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

temporality remove CLA & change CICD config #1

Merged
merged 1 commit into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions .github/workflows/CLA.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
name: "CLA Assistant"
on:
issue_comment:
types: [created]
pull_request_target:
types: [opened, closed, synchronize]
# name: "CLA Assistant"
# on:
# issue_comment:
# types: [created]
# pull_request_target:
# types: [opened, closed, synchronize]

jobs:
CLAssistant:
runs-on: ubuntu-latest
permissions:
actions: write
pull-requests: write
steps:
- name: "CLA Assistant"
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
uses: cla-assistant/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_PERSONAL_ACCESS_TOKEN }}
with:
path-to-signatures: "${{ github.event.repository.name }}/signatures/version1/cla.json"
path-to-document: "https://gist.github.com/e78f99e1c527225637e269cff1bc7e49" # Klaytn Gist
branch: "master"
allowlist: dependabot[bot]
remote-repository-name: ${{ secrets.CLA_REPOSITORY }}
# jobs:
# CLAssistant:
# runs-on: ubuntu-latest
# permissions:
# actions: write
# pull-requests: write
# steps:
# - name: "CLA Assistant"
# if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
# uses: cla-assistant/[email protected]
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_PERSONAL_ACCESS_TOKEN }}
# with:
# path-to-signatures: "${{ github.event.repository.name }}/signatures/version1/cla.json"
# path-to-document: "https://gist.github.com/e78f99e1c527225637e269cff1bc7e49" # Klaytn Gist
# branch: "master"
# allowlist: dependabot[bot]
# remote-repository-name: ${{ secrets.CLA_REPOSITORY }}
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:
- name: testing
run: npm run test
- name: Publish package on NPM 📦
run: npx pnpm --filter "@klaytn/kss-*" --filter !"@klaytn/kss-cli" -r publish --no-git-check --access public
run: npx pnpm --filter "@kaiachain/kss-*" --filter !"@kaiachain/kss-cli" -r publish --no-git-check --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Install kss-cli dependencies
run: cd packages/kss-cli && npm install --force
- name: Publish kss-cli package on NPM 📦
run: npx pnpm --filter "@klaytn/kss-cli" -r publish --no-git-check --access public
run: npx pnpm --filter "@kaiachain/kss-cli" -r publish --no-git-check --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading