Skip to content

Commit

Permalink
try using GITHUB_TOKEN in workflows (#214)
Browse files Browse the repository at this point in the history
* try using github_token

* updating commands to match readme and also to kick the drone build
  • Loading branch information
katebrenner authored Sep 7, 2023
1 parent 19c7dc6 commit ebb057b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/issue_commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ jobs:
- name: Run Commands
uses: ./actions/commands
with:
token: ${{secrets.ISSUE_COMMANDS_TOKEN}}
token: ${{ secrets.GITHUB_TOKEN }}
configPath: issue_commands
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"build": "webpack -c webpack.config.ts --env production",
"clean": "rm -rf dist/ build/*",
"dev": "webpack -w -c webpack.config.ts --env development",
"dev": "webpack -c webpack.config.ts --env development",
"e2e": "yarn cypress install && yarn grafana-e2e run",
"e2e:open": "grafana-e2e open",
"e2e:update": "yarn cypress install && yarn grafana-e2e run --update-screenshots",
Expand All @@ -19,7 +19,8 @@
"test:ci": "jest --passWithNoTests --maxWorkers 4",
"test:coverage": "jest --coverage",
"test:coverage:changes": "jest --coverage --changedSince=origin/main",
"typecheck": "tsc --noEmit"
"typecheck": "tsc --noEmit",
"watch": "webpack -w -c webpack.config.ts --env development"
},
"author": "IoT TwinMaker Frontend",
"devDependencies": {
Expand Down

0 comments on commit ebb057b

Please sign in to comment.