diff --git a/.github/workflows/closing_ticket.yml b/.github/workflows/closing_ticket.yml index ef8f6dc5..f1fb6bdf 100644 --- a/.github/workflows/closing_ticket.yml +++ b/.github/workflows/closing_ticket.yml @@ -1,3 +1,6 @@ +# This ensures that when a user manually closes a ticket in Jira, +# it will update the workflow labels appropriately. + name: Closing ticket on: issues: diff --git a/.github/workflows/labeling_ticket_done.yml b/.github/workflows/labeling_ticket_done.yml index 33373932..76278c5c 100644 --- a/.github/workflows/labeling_ticket_done.yml +++ b/.github/workflows/labeling_ticket_done.yml @@ -1,3 +1,5 @@ +# This ensures that when a ticket is labeled as Done in Jira, it will close the ticket on GitHub. + name: Labeling ticket "Done" on: issues: diff --git a/.github/workflows/labeling_ticket_todo.yml b/.github/workflows/labeling_ticket_todo.yml index 982b27fd..06e552c9 100644 --- a/.github/workflows/labeling_ticket_todo.yml +++ b/.github/workflows/labeling_ticket_todo.yml @@ -1,3 +1,5 @@ +# This ensures that when a ticket is not labeled as Done in Jira, it will re-open the ticket on GitHub. + name: Labeling ticket "To Do" on: issues: diff --git a/.github/workflows/reopening_ticket.yml b/.github/workflows/reopening_ticket.yml index d64e9914..8f984ccb 100644 --- a/.github/workflows/reopening_ticket.yml +++ b/.github/workflows/reopening_ticket.yml @@ -1,3 +1,6 @@ +# This ensures that when a ticket is reopened in Jira, it will update the +# workflow labels in GitHub appropriately. + name: Reopening ticket on: issues: diff --git a/include/c2pa.hpp b/include/c2pa.hpp index d270c8a3..9ccd1c4b 100644 --- a/include/c2pa.hpp +++ b/include/c2pa.hpp @@ -38,7 +38,7 @@ #include #include -#include +#include "c2pa.h" // NOOP for now, can use later to define static library #define C2PA_CPP_API diff --git a/tests/test.c b/tests/test.c index d5f65415..1ce98626 100644 --- a/tests/test.c +++ b/tests/test.c @@ -14,7 +14,7 @@ #include #include -#include +#include "c2pa.h" #include "file_stream.h" #include "unit_test.h"