feat!: auth code flow #2088
feat!: auth code flow #2088
Check failed
There are 3 commits incorrectly signed off, the check did not pass.
Summary
Sha | Message | Pass or fail reason | |
---|---|---|---|
🔴 | 5cd08fe | fix: auth code flow alpha | Sign-off not found |
🟢 | b64bce3 | Merge branch 'main' of github.com:openwallet-found... | Skipped: sign-off not required in merge commit |
🔴 | 80b55b4 | fix: make eslint happy | Sign-off not found |
🔴 | 9ccb645 | feat: add method to test auth code flow | Sign-off not found |
🟢 | 8ab5b22 | Merge remote-tracking branch 'upstream/main' into ... | Skipped: sign-off not required in merge commit |
🟢 | bd02008 | Merge branch 'main' into auth-code-flow-2 | Skipped: sign-off not required in merge commit |
🟢 | b2eb533 | fix: host separate oauth-auhtorization-server | Valid sign-off found |
🟢 | 3de4e82 | temp | Valid sign-off found |
🟢 | c0b49dc | temp | Valid sign-off found |
🟢 | be9876b | some updates | Valid sign-off found |
🟢 | 9e1050b | Merge remote-tracking branch 'upstream/main' into ... | Skipped: sign-off not required in merge commit |
🟢 | c7f9eb3 | feat: working and tests passing | Valid sign-off found |
🟢 | ef57b9d | Merge remote-tracking branch 'upstream/main' into ... | Skipped: sign-off not required in merge commit |
🟢 | bee17c8 | docs(changeset): feat(openid4vc): oid4vci authoriz... | Valid sign-off found |
🟢 | 4b9e845 | both token introspection and jwt flow working | Valid sign-off found |
🟢 | 5545919 | feat: presentation during issuance server side | Valid sign-off found |
🟢 | 35c2c96 | fix: loading of verifier module | Valid sign-off found |
🟢 | 28a63dc | lot of fixes | Valid sign-off found |
🟢 | b1ef329 | address feedback | Valid sign-off found |
🟢 | 10c3403 | docs(changeset): fix(openid4vc): use vp_formats ... |
Valid sign-off found |
🟢 | 8b37fc7 | docs(changeset): feat(openid4vc): support jwk thum... | Valid sign-off found |
🟢 | eddaf68 | address feedback | Valid sign-off found |
🟢 | 5f039c8 | remove fixme/todo | Valid sign-off found |
🟢 | d4c27f6 | update lockfile | Valid sign-off found |
🟢 | 317a005 | fix lint | Valid sign-off found |
🟢 | 979e268 | fix coverage upload | Valid sign-off found |
🟢 | e23a394 | codecov | Valid sign-off found |
🟢 | 0190db4 | fix type | Valid sign-off found |
🟢 | b01885a | some improvements | Valid sign-off found |
🟢 | 899c89a | update | Valid sign-off found |
🟢 | e644178 | feat(demo): ngrok and presentation during issuance | Valid sign-off found |
🟢 | 69083cd | type | Valid sign-off found |
🟢 | 08be88e | test: fix | Valid sign-off found |
🟢 | 38a6665 | test: fix | Valid sign-off found |
🟢 | a9f32da | Merge remote-tracking branch 'upstream/main' into ... | Skipped: sign-off not required in merge commit |
🟢 | fd0c71f | chore: update | Valid sign-off found |
Errors details
Sign-off not found
No sign-off was found in the commit message. This usually means that the author or committer of this commit failed to include a Signed-off-by line in the commit message. In some cases, this error can also be raised if the sign-off is not in the correct format.
To avoid having pull requests blocked in the future, always include a Signed-off-by: User1 <user1@email.test>
line in every commit message. You can also do this automatically by using the -s flag (i.e., git commit -s
).
How to fix missing or invalid sign-offs
Option 1: add remediation commit
Remediation commits are not allowed for this repository. For more details about how to enable them, please see the documentation.
Option 2: fix commits without sign-off
Rebase the branch
If you have a local git environment and meet the criteria below, one option is to rebase the branch and add your Signed-off-by lines in the new commits. Please note that if others have already begun work based upon the commits in this branch, this solution will rewrite history and may cause serious issues for collaborators (described in the git documentation under "The Perils of Rebasing").
Warning
You should only do this if:
- You are the only author of the commits in this branch
- You are absolutely certain nobody else is doing any work based upon this branch
- There are no empty commits in the branch
To add your Signed-off-by line to every commit in this branch:
- Ensure you have a local copy of your branch by checking out the pull request locally via command line.
- In your local branch, run:
git rebase HEAD~36 --signoff
- Force push your changes to overwrite the branch:
git push --force-with-lease origin auth-code-flow-2