-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
495 changed files
with
19,754 additions
and
15,026 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
name: Accessibility issue template | ||
about: A template to follow when creating a new issue for accessibility failures | ||
--- | ||
|
||
If you haven’t already, check out our [contributing guidelines](https://github.com/Expensify/ReactNativeChat/blob/main/CONTRIBUTING.md) for onboarding and email contributors@expensify.com to request to join our Slack channel! | ||
___ | ||
|
||
## Action Performed: | ||
Break down in numbered steps | ||
|
||
## Expected Result: | ||
Describe what you think should've happened | ||
|
||
## Actual Result: | ||
Describe what actually happened | ||
|
||
## Workaround: | ||
Can the user still use Expensify without this being fixed? Have you informed them of the workaround? | ||
|
||
## Area issue was found in: | ||
Where did we find this issue? | ||
|
||
## Failed WCAG checkpoints | ||
What WCAG checkpoints were failed? | ||
|
||
## User impact: | ||
How does this affect the user? | ||
|
||
## Suggested resolution: | ||
What can we do to fix the issue? | ||
|
||
## Platform: | ||
<!--- | ||
Remove any platforms that aren't affected by this issue | ||
---> | ||
Where is this issue occurring? | ||
|
||
- Web | ||
- iOS | ||
- Android | ||
- Desktop App | ||
- Mobile Web | ||
|
||
**Version Number:** | ||
**Reproducible in staging?:** | ||
**Reproducible in production?:** | ||
**Notes/Photos/Videos:** Any additional supporting documentation | ||
**Issue reported by:** | ||
|
||
[View all open jobs on GitHub](https://github.com/Expensify/App/issues?q=is%3Aopen+is%3Aissue+label%3A%22Help+Wanted%22) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: 'Check if Bundle Versions Match' | ||
description: "Check if the CFBundleVersion string is compatible with the CFBundleShortVersionString" | ||
outputs: | ||
BUNDLE_VERSIONS_MATCH: | ||
description: Whether or not the bundle versions match | ||
runs: | ||
using: 'node12' | ||
main: './index.js' |
16 changes: 16 additions & 0 deletions
16
.github/actions/checkBundleVersionStringMatch/checkBundleVersionStringMatch.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
const core = require('@actions/core'); | ||
const {execSync} = require('child_process'); | ||
const {PLIST_PATH} = require('../../libs/nativeVersionUpdater'); | ||
|
||
const bundleVersion = execSync(`/usr/libexec/PlistBuddy -c "Print :CFBundleVersion" ${PLIST_PATH}`); | ||
const shortBundleVersion = execSync(`/usr/libexec/PlistBuddy -c "Print :CFBundleShortVersionString" ${PLIST_PATH}`); | ||
|
||
console.log(`Bundle Version: ${bundleVersion}`); | ||
console.log(`Short Bundle Version: ${shortBundleVersion}`); | ||
if (shortBundleVersion !== (bundleVersion.split('-') || [''])[0]) { | ||
console.log('Bundle Versions do not match'); | ||
core.setOutput('BUNDLE_VERSIONS_MATCH', false); | ||
} else { | ||
console.log('Bundle Versions match'); | ||
core.setOutput('BUNDLE_VERSIONS_MATCH', true); | ||
} |
Oops, something went wrong.