Skip to content
Closed
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
3 changes: 3 additions & 0 deletions .github/workflows/closing_ticket.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/labeling_ticket_done.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/labeling_ticket_todo.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/reopening_ticket.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion include/c2pa.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#include <vector>
#include <optional>

#include <c2pa.h>
#include "c2pa.h"

// NOOP for now, can use later to define static library
#define C2PA_CPP_API
Expand Down
2 changes: 1 addition & 1 deletion tests/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <stdlib.h>
#include <string.h>

#include <c2pa.h>
#include "c2pa.h"
#include "file_stream.h"
#include "unit_test.h"

Expand Down