├── .github └── workflows │ └── allure-history.yml ├── .gitignore ├── .gitlab-ci.yml ├── README.md ├── allure-history-action └── action.yml ├── allure-report-action ├── Dockerfile ├── README.md ├── action.yml └── entrypoint.sh ├── allure-template.yml ├── generate.bat ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── old.workflow.yml ├── settings.gradle └── src ├── main └── java │ └── io │ └── qameta │ └── allure │ └── examples │ ├── JiraIssue.java │ ├── JiraIssues.java │ ├── Layer.java │ ├── Lead.java │ ├── PagePath.java │ ├── RestSteps.java │ ├── UrlPath.java │ └── WebSteps.java └── test ├── java └── io │ └── qameta │ └── allure │ └── examples │ └── junit5 │ ├── IssuesRestTest.java │ ├── IssuesWebTest.java │ └── PullRequestsWebTest.java └── resources └── index.html /.github/workflows/allure-history.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/.github/workflows/allure-history.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/README.md -------------------------------------------------------------------------------- /allure-history-action/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/allure-history-action/action.yml -------------------------------------------------------------------------------- /allure-report-action/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/allure-report-action/Dockerfile -------------------------------------------------------------------------------- /allure-report-action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/allure-report-action/README.md -------------------------------------------------------------------------------- /allure-report-action/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/allure-report-action/action.yml -------------------------------------------------------------------------------- /allure-report-action/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/allure-report-action/entrypoint.sh -------------------------------------------------------------------------------- /allure-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/allure-template.yml -------------------------------------------------------------------------------- /generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/generate.bat -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/gradlew.bat -------------------------------------------------------------------------------- /old.workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/old.workflow.yml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'github-allure-history' 2 | 3 | -------------------------------------------------------------------------------- /src/main/java/io/qameta/allure/examples/JiraIssue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/src/main/java/io/qameta/allure/examples/JiraIssue.java -------------------------------------------------------------------------------- /src/main/java/io/qameta/allure/examples/JiraIssues.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/src/main/java/io/qameta/allure/examples/JiraIssues.java -------------------------------------------------------------------------------- /src/main/java/io/qameta/allure/examples/Layer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/src/main/java/io/qameta/allure/examples/Layer.java -------------------------------------------------------------------------------- /src/main/java/io/qameta/allure/examples/Lead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/src/main/java/io/qameta/allure/examples/Lead.java -------------------------------------------------------------------------------- /src/main/java/io/qameta/allure/examples/PagePath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/src/main/java/io/qameta/allure/examples/PagePath.java -------------------------------------------------------------------------------- /src/main/java/io/qameta/allure/examples/RestSteps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/src/main/java/io/qameta/allure/examples/RestSteps.java -------------------------------------------------------------------------------- /src/main/java/io/qameta/allure/examples/UrlPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/src/main/java/io/qameta/allure/examples/UrlPath.java -------------------------------------------------------------------------------- /src/main/java/io/qameta/allure/examples/WebSteps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/src/main/java/io/qameta/allure/examples/WebSteps.java -------------------------------------------------------------------------------- /src/test/java/io/qameta/allure/examples/junit5/IssuesRestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/src/test/java/io/qameta/allure/examples/junit5/IssuesRestTest.java -------------------------------------------------------------------------------- /src/test/java/io/qameta/allure/examples/junit5/IssuesWebTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/src/test/java/io/qameta/allure/examples/junit5/IssuesWebTest.java -------------------------------------------------------------------------------- /src/test/java/io/qameta/allure/examples/junit5/PullRequestsWebTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/src/test/java/io/qameta/allure/examples/junit5/PullRequestsWebTest.java -------------------------------------------------------------------------------- /src/test/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-elf/github-allure-history/HEAD/src/test/resources/index.html --------------------------------------------------------------------------------