1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-08-06 22:13:02 +02:00
Commit Graph

15 Commits

Author SHA1 Message Date
59bda3c9b6 [LIBRARY] Migrate: to interviewstreet 2021-11-10 22:38:26 +05:30
e18b086dfc 🔥[PACKAGE] Change: Package Name 2021-10-10 17:37:36 +05:30
f1fe71fa2d fixing package names 2021-08-27 14:45:21 +05:30
ce2922262c Add funding information (#383) 2021-07-22 18:13:46 +02:00
2c5d75bf06 Cleanup Continuous Integration (#384)
* Remove "stale" workflow. It was a nice idea, but deactivated for quite some time anyway

* Remove TravisCI
2021-07-22 18:13:03 +02:00
fcb7aa2272 Upgrade to GitHub-native Dependabot (#375)
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2021-04-29 18:21:01 +02:00
1a84689d0c Raise go versions in testing workflow (#349) 2021-02-09 11:13:37 +01:00
6be9c38b9a Disable stale bot (#313)
Per discussion in issue #310, the stale bot is now considered a
bad user experience. Change days before stale and close to a high number
to disable it, as we cannot remove this configuration until the
integration is also removed.

Co-authored-by: Matt Finkel <mattf@ziprecruiter.com>
2020-08-16 11:48:59 +02:00
de60bbed3f Update testing github action workflow to actions/cache@v2 2020-05-28 10:23:40 +02:00
80c02828ca feat(project): Add GitHub Actions testing workflow (#289)
GitHub actions is a workflow engine.
This testing workflow will
- keep everything inside GitHub (one platform)
- reduce dependency to an external service (TravisCI)
- introduce stricter testing (next to unit tests, staticcheck, fmt, vet)

* fix(tests): TestIssueService_GetEditMeta_Fail fails on windows due to error message checking

We check the error string in TestIssueService_GetEditMeta_Fail.
On different operting systems, this error message is different. See

- Linux: TestIssueService_GetEditMeta_Fail: metaissue_test.go:456: Error Get "http://127.0.0.1:65328/rest/api/2/issue/PROJ-9001/editmeta": dial tcp 127.0.0.1:65328: connect: connection refused
- Windows: Error Get "http://127.0.0.1:50122/rest/api/2/issue/PROJ-9001/editmeta": dial tcp 127.0.0.1:50122: connectex: No connection could be made because the target machine actively refused it.

Now we check the error type instead of the error message

* chore(tests): Support only the current + the last two versions

go-jira follows Go's Release Policy for testing.
See https://golang.org/doc/devel/release.html#policy

Related #290
2020-05-03 15:45:09 +02:00
c357b61a40 feat(project): Add workflow to greet new contributors (#288)
GitHub actions is a workflow engine.
This greetings workflow will greet people who contribute the
first time to this project. Either via Pull request or
by filling an issue.
It is a nice addition :)
2020-05-02 23:07:24 +02:00
2096b04e52 feat(project): Add cronjob to check for stale issues (#287)
GitHub actions is a workflow engine.
The stale workflow helps us to keep the issue tracker up to date.
Issues that doesn't have activity since 60 days will be marked as
stale and closed eventually.
2020-05-02 23:07:12 +02:00
3fd3879ae3 improvement: Add ISSUE_TEMPLATES to guide users and contributors (for bugs and feature requests) 2020-04-29 10:59:12 -07:00
6ad1917706 improvement: Request more information in a pull request template
Makes the Pull Request template a bit more explicit.
Goals of this are:
- to guide the user more
- to make it more clear what we are asking for (e.g. what kind of tests)
- to ask for code examples (that could be used for documentation)
- to start a thought process for the contributor
- to make the maintainers work a bit easier

Addiotionally we formatted the links in the checklist a bit more
readable for a human.
2020-04-29 10:30:48 -07:00
10b99828bc chore: Make use of the new .github meta folder for PR template
GitHub offers a .github meta folder to store things like
Pull Request or Issue templates.
We move this file into the meta folder to keep the root a bit cleaner
and only related to code and not to the VCS environment.
2020-04-29 10:30:48 -07:00