Skip to content
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
30 changes: 30 additions & 0 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This is a basic workflow that is manually triggered

name: Send Review Message

# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
name:
# Friendly description to be shown in the UI instead of 'name'
description: 'Release name'
# Default value if no value is explicitly provided
default: '100'
# Input has to be provided for the workflow to run
required: true

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "greet"
reviewMessage:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Runs a single command using the runners shell
- name: Send review message
run: echo "This PR for release ${{ github.event.inputs.name }} needs review from the community. Check out the changelog and provide your feedback!"
2 changes: 1 addition & 1 deletion companion-packages/meteorrn-ndev-mfa/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ let assembleChallengeCompletionArguments = async function (finishLoginParams, co
assertion = {challengeId, challengeSecret, ...code};
}
else {
assertion = await solveU2FChallenge(res);
throw new Error("Code must be a U2FAuthorizationCode");
}
methodArguments.push(assertion);
}
Expand Down